diff options
author | Petr Mrázek <peterix@gmail.com> | 2014-07-14 00:57:54 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-07-14 00:57:54 +0200 |
commit | 3821569363bdc13c59704c2f37c5de9fee5a21e2 (patch) | |
tree | c30fd938bf3f7076084916a1a0980115341445d6 /logic/updater/UpdateChecker.h | |
parent | d8d6f5929b1a0104b31d381a45799849c6d82636 (diff) | |
download | MultiMC-3821569363bdc13c59704c2f37c5de9fee5a21e2.tar MultiMC-3821569363bdc13c59704c2f37c5de9fee5a21e2.tar.gz MultiMC-3821569363bdc13c59704c2f37c5de9fee5a21e2.tar.lz MultiMC-3821569363bdc13c59704c2f37c5de9fee5a21e2.tar.xz MultiMC-3821569363bdc13c59704c2f37c5de9fee5a21e2.zip |
Show changelog even when there are no new updates available.
Diffstat (limited to 'logic/updater/UpdateChecker.h')
-rw-r--r-- | logic/updater/UpdateChecker.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/logic/updater/UpdateChecker.h b/logic/updater/UpdateChecker.h index 3b0ee28d..2ee1b4b5 100644 --- a/logic/updater/UpdateChecker.h +++ b/logic/updater/UpdateChecker.h @@ -33,7 +33,7 @@ public: * Causes the update checker to download the channel list from the URL specified in config.h (generated by CMake). * If this isn't called before checkForUpdate(), it will automatically be called. */ - void updateChanList(); + void updateChanList(bool notifyNoUpdate); /*! * An entry in the channel list. @@ -70,7 +70,7 @@ private slots: void updateCheckFinished(bool notifyNoUpdate); void updateCheckFailed(); - void chanListDownloadFinished(); + void chanListDownloadFinished(bool notifyNoUpdate); void chanListDownloadFailed(); private: |