summaryrefslogtreecommitdiff
path: root/src/selfupdater.h
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-09-23 19:10:19 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-09-23 19:10:19 -0400
commit088f27fe48cd8f218052090a97e8187eedf0c06e (patch)
tree87e2695ff28c5fa4a7ef3610a0898f22776074e6 /src/selfupdater.h
parent200b5283eb5a0eff5ed18e772930b99eea5e11ef (diff)
changed the layout of the general settings tab
added option to disable checking for updates removed online check, just try it and see
Diffstat (limited to 'src/selfupdater.h')
-rw-r--r--src/selfupdater.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/selfupdater.h b/src/selfupdater.h
index bce49495..0c81efc5 100644
--- a/src/selfupdater.h
+++ b/src/selfupdater.h
@@ -37,7 +37,7 @@ namespace MOBase { class IPluginGame; }
class QNetworkReply;
class QProgressDialog;
-
+class Settings;
/**
* @brief manages updates for Mod Organizer itself
@@ -81,6 +81,11 @@ public:
void setPluginContainer(PluginContainer *pluginContainer);
/**
+ * @brief request information about the current version
+ **/
+ void testForUpdate(const Settings& settings);
+
+ /**
* @brief start the update process
* @note this should not be called if there is no update available
**/
@@ -91,13 +96,6 @@ public:
**/
MOBase::VersionInfo getVersion() const { return m_MOVersion; }
-public slots:
-
- /**
- * @brief request information about the current version
- **/
- void testForUpdate();
-
signals:
/**