From 1ca78c369822ab8d096e15480b19adedae04e746 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 18 Dec 2011 14:30:08 +1000 Subject: [PATCH] RestartApplication() Fix for Mac --- UpdaterWindow.cpp | 2 -- mainwindow.cpp | 5 +++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/UpdaterWindow.cpp b/UpdaterWindow.cpp index a3fb7919..32b994d8 100644 --- a/UpdaterWindow.cpp +++ b/UpdaterWindow.cpp @@ -189,9 +189,7 @@ void UpdaterWindow::ParseUpdateXML(QIODevice * dev) } if (!release || (VersionString() > release->version)) { mainwin->Notify("No updates were found for your platform",5000,"SleepyHead Updates"); - sh_delay(4000); close(); - return; } diff --git a/mainwindow.cpp b/mainwindow.cpp index 0b1f014f..a0a2216b 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -518,7 +518,6 @@ void MainWindow::CheckForUpdates() void MainWindow::on_actionCheck_for_Updates_triggered() { UpdaterWindow *w=new UpdaterWindow(this); - w->checkForUpdates(); // if (PREF.Exists("Updates_LastChecked")) { @@ -1154,7 +1153,9 @@ void MainWindow::RestartApplication(bool force_login) apppath=QApplication::instance()->applicationDirPath().section("/",0,-3); QStringList args; - args << "-n" << apppath << "-p"; // -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; + if (force_login) args << "-l"; // -p starts with 1 second delay, to give this process time to save..