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)) {
// success=true;
//} else
if (QProcess::startDetached("/usr/bin/open",QStringList() << apppath)) {
success=true;
}
if (!success) {
QStringList args;
args << "-n" << apppath;
if (QProcess::startDetached("/usr/bin/open",args)) {
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);
} else QApplication::instance()->exit();
#else
apppath=QApplication::instance()->applicationFilePath();