From: Markus Goetz Date: Mon, 25 Jun 2018 10:29:28 +0000 (+0200) Subject: Updater: Comments X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~22^2~46^2~22 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=412e43b69611a6d3993da6cc6b3688a8c5bd7647;p=nextcloud-desktop.git Updater: Comments --- diff --git a/src/gui/updater/ocupdater.h b/src/gui/updater/ocupdater.h index 34c940732..e82bed075 100644 --- a/src/gui/updater/ocupdater.h +++ b/src/gui/updater/ocupdater.h @@ -115,6 +115,7 @@ signals: void requestRestart(); public slots: + // FIXME Maybe this should be in the NSISUpdater which should have been called WindowsUpdater void slotStartInstaller(); protected slots: diff --git a/src/gui/updater/updater.cpp b/src/gui/updater/updater.cpp index 9867db7f8..07f65ee00 100644 --- a/src/gui/updater/updater.cpp +++ b/src/gui/updater/updater.cpp @@ -132,9 +132,10 @@ Updater *Updater::create() #if defined(Q_OS_MAC) && defined(HAVE_SPARKLE) return new SparkleUpdater(url); #elif defined(Q_OS_WIN32) - // the best we can do is notify about updates + // Also for MSI return new NSISUpdater(url); #else + // the best we can do is notify about updates return new PassiveUpdateNotifier(url); #endif }