summaryrefslogtreecommitdiffstats
path: root/logic/updater
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2014-01-18 22:30:36 +0100
committerPetr Mrázek <peterix@gmail.com>2014-01-18 22:30:36 +0100
commit50c441a7735bc7910db345c846adccc049d89170 (patch)
tree773bdde1a290224d7616a4ff9ef9709232e69cce /logic/updater
parente9186d6d2c9d5e08516d6a3126440f89e55d056b (diff)
parent7d76fd57e99e686d59f48038e7b762e4064996d1 (diff)
downloadMultiMC-50c441a7735bc7910db345c846adccc049d89170.tar
MultiMC-50c441a7735bc7910db345c846adccc049d89170.tar.gz
MultiMC-50c441a7735bc7910db345c846adccc049d89170.tar.lz
MultiMC-50c441a7735bc7910db345c846adccc049d89170.tar.xz
MultiMC-50c441a7735bc7910db345c846adccc049d89170.zip
Merge branch 'fix_tests' of https://github.com/02JanDal/MultiMC5 into develop
Diffstat (limited to 'logic/updater')
-rw-r--r--logic/updater/UpdateChecker.cpp1
-rw-r--r--logic/updater/UpdateChecker.h2
2 files changed, 0 insertions, 3 deletions
diff --git a/logic/updater/UpdateChecker.cpp b/logic/updater/UpdateChecker.cpp
index 8a280dd1..8e2aa8b3 100644
--- a/logic/updater/UpdateChecker.cpp
+++ b/logic/updater/UpdateChecker.cpp
@@ -30,7 +30,6 @@
UpdateChecker::UpdateChecker()
{
- m_currentChannel = VERSION_CHANNEL;
m_channelListUrl = CHANLIST_URL;
m_updateChecking = false;
m_chanListLoading = false;
diff --git a/logic/updater/UpdateChecker.h b/logic/updater/UpdateChecker.h
index 7840cedc..3b0ee28d 100644
--- a/logic/updater/UpdateChecker.h
+++ b/logic/updater/UpdateChecker.h
@@ -27,7 +27,6 @@ public:
UpdateChecker();
void checkForUpdate(bool notifyNoUpdate);
- void setCurrentChannel(const QString &channel) { m_currentChannel = channel; }
void setChannelListUrl(const QString &url) { m_channelListUrl = url; }
/*!
@@ -83,7 +82,6 @@ private:
QString m_repoUrl;
QString m_channelListUrl;
- QString m_currentChannel;
QList<ChannelListEntry> m_channels;