--- Vago/trunk/Vago/converter.cpp 2014/01/08 11:32:55 897 +++ Vago/trunk/Vago/converter.cpp 2016/03/24 22:28:41 1035 @@ -15,6 +15,7 @@ void Converter::run() QString errorMessage = ""; int numErrors=0; + this->myLogger->writeString("Setting working dir. to "+this->AppDir+"."); myProcess->setWorkingDirectory(this->AppDir); // Set working directory (for work with AEI2/Mac OS) if(this->myData->size()!=1){ @@ -35,7 +36,7 @@ void Converter::run() nextIndex=commands.indexOf(GlobalVars::OniSplitProcSeparator,currentIndex+1); commandToExec=commands.mid(currentIndex,(nextIndex-currentIndex)); - this->myProcess->start(GlobalVars::OniSplitExeName+" "+commandToExec); + this->myProcess->start(Util::getOniSplitExeName() +" "+commandToExec); this->myProcess->waitForFinished(-1); if(this->processHasKilled){ // If the process has killed there's no need to proceed with reading output or process more commands