Mac RestartApplication() fix #2

This commit is contained in:
Mark Watkins 2011-12-18 15:15:30 +10:00
parent 557b6fa8af
commit 861ed166ca

View File

@ -1154,9 +1154,9 @@ void MainWindow::RestartApplication(bool force_login)
QStringList args; QStringList args;
args << "-n"; // -n option is important, as it opens a new process args << "-n"; // -n option is important, as it opens a new process
args << apppath << "-p"; apppath+=" -p";
if (force_login) apppath+=" -l";
if (force_login) args << "-l"; args << apppath;
// -p starts with 1 second delay, to give this process time to save.. // -p starts with 1 second delay, to give this process time to save..
if (QProcess::startDetached("/usr/bin/open",args)) { if (QProcess::startDetached("/usr/bin/open",args)) {