From 78b71852e6e8d79c39bbc93bb3bc934ce04372ed Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Fri, 20 Jun 2014 14:54:12 +0200 Subject: [PATCH] Fix for fileconverter located in a path with spaces. --- Gui/mainwindow.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gui/mainwindow.cpp b/Gui/mainwindow.cpp index bd829ae459b..15aba1929e0 100644 --- a/Gui/mainwindow.cpp +++ b/Gui/mainwindow.cpp @@ -1038,6 +1038,9 @@ void MainWindow::callFileConverter() const { QSettings settings; QString converter_path = settings.value("DataExplorerConverterPath").toString(); +#if _WIN32 + converter_path = QString("\"").append(converter_path).append("\""); +#endif if (!converter_path.isEmpty()) system(converter_path.toAscii()); else -- GitLab