Changeset 1053 for Vago/trunk


Ignore:
Timestamp:
Sep 17, 2016, 4:34:17 PM (8 years ago)
Author:
s10k
Message:

Fixed start of XmlTools and OniSplit when they are contained in a path with spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Vago/trunk/Vago/utilvago.cpp

    r1052 r1053  
    8080
    8181#ifdef Q_OS_MAC
    82     return getMonoExecutablePath() + " " + getOniSplitExecutableAbsolutePath();
     82    return getMonoExecutablePath() + " " + Util::insertQuotes(getOniSplitExecutableAbsolutePath());
    8383#else
    84     return getOniSplitExecutableAbsolutePath();
     84    return Util::insertQuotes(getOniSplitExecutableAbsolutePath());
    8585#endif
    8686}
    8787
    8888QString getXmlToolsExecutable(){
    89     return getXmlToolsExecutableAbsolutePath();
     89    return Util::insertQuotes(getXmlToolsExecutableAbsolutePath());
    9090}
    9191
Note: See TracChangeset for help on using the changeset viewer.