Skip to content

Commit 8e4d2e8

Browse files
committed
Updater: Comments
1 parent b2fa9ed commit 8e4d2e8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/gui/updater/ocupdater.h

+1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ class OCUpdater : public Updater
115115
void requestRestart();
116116

117117
public slots:
118+
// FIXME Maybe this should be in the NSISUpdater which should have been called WindowsUpdater
118119
void slotStartInstaller();
119120

120121
protected slots:

src/gui/updater/updater.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,10 @@ Updater *Updater::create()
126126
#if defined(Q_OS_MAC) && defined(HAVE_SPARKLE)
127127
return new SparkleUpdater(url);
128128
#elif defined(Q_OS_WIN32)
129-
// the best we can do is notify about updates
129+
// Also for MSI
130130
return new NSISUpdater(url);
131131
#else
132+
// the best we can do is notify about updates
132133
return new PassiveUpdateNotifier(url);
133134
#endif
134135
}

0 commit comments

Comments
 (0)