Added the -n open commands arguments

This commit is contained in:
Mark Watkins 2011-11-08 19:43:50 +10:00
parent 250cdae0e5
commit 2ff66a2137

View File

@ -283,12 +283,12 @@ void PreferencesDialog::Save()
//if (QDesktopServices::openUrl(apppath)) { //if (QDesktopServices::openUrl(apppath)) {
// success=true; // success=true;
//} else //} else
if (QProcess::startDetached("/usr/bin/open",QStringList() << apppath)) { QStringList args;
success=true; args << "-n" << apppath;
} if (QProcess::startDetached("/usr/bin/open",args)) {
if (!success) { QApplication::instance()->exit();
} else
QMessageBox::warning(this,"Gah!","If you can read this, two seperate application restart commands didn't work. Mark want's to know the following string:"+apppath,QMessageBox::Ok); QMessageBox::warning(this,"Gah!","If you can read this, two seperate application restart commands didn't work. Mark want's to know the following string:"+apppath,QMessageBox::Ok);
} else QApplication::instance()->exit();
#else #else
apppath=QApplication::instance()->applicationFilePath(); apppath=QApplication::instance()->applicationFilePath();