We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 028db9b commit 59a45d2Copy full SHA for 59a45d2
src/gui/qgisapp.cpp
@@ -3239,6 +3239,10 @@ void QgisApp::exportMapServer()
3239
//{
3240
QString myMSExportPath = QgsApplication::msexportAppPath();
3241
QProcess *process = new QProcess;
3242
+#ifdef WIN32
3243
+ // quote the application path on windows
3244
+ myMSExportPath = QString("\"") + myMSExportPath + QString("\"");
3245
+#endif
3246
process->start(myMSExportPath);
3247
3248
// Delete this object if the process terminates
0 commit comments