--- Vago/trunk/Vago/utilvago.cpp 2016/09/17 13:32:34 1052 +++ Vago/trunk/Vago/utilvago.cpp 2016/09/17 14:34:17 1053 @@ -79,14 +79,14 @@ QString getXmlToolsExecutableAbsolutePat QString getOniSplitExecutable(){ #ifdef Q_OS_MAC - return getMonoExecutablePath() + " " + getOniSplitExecutableAbsolutePath(); + return getMonoExecutablePath() + " " + Util::insertQuotes(getOniSplitExecutableAbsolutePath()); #else - return getOniSplitExecutableAbsolutePath(); + return Util::insertQuotes(getOniSplitExecutableAbsolutePath()); #endif } QString getXmlToolsExecutable(){ - return getXmlToolsExecutableAbsolutePath(); + return Util::insertQuotes(getXmlToolsExecutableAbsolutePath()); } #ifdef Q_OS_MAC