NOISSUE remove status checker from application object

This commit is contained in:
Petr Mrázek
2015-01-29 08:57:38 +01:00
parent 791221e923
commit 7334b8e520
5 changed files with 6 additions and 17 deletions

View File

@@ -20,7 +20,6 @@ class LiteLoaderVersionList;
class JavaVersionList;
class UpdateChecker;
class NotificationChecker;
class StatusChecker;
class BaseProfilerFactory;
class BaseDetachedToolFactory;
class TranslationDownloader;
@@ -101,11 +100,6 @@ public:
return m_notificationChecker;
}
std::shared_ptr<StatusChecker> statusChecker()
{
return m_statusChecker;
}
std::shared_ptr<LWJGLVersionList> lwjgllist();
std::shared_ptr<ForgeVersionList> forgelist();
@@ -191,7 +185,6 @@ private:
std::shared_ptr<InstanceList> m_instances;
std::shared_ptr<UpdateChecker> m_updateChecker;
std::shared_ptr<NotificationChecker> m_notificationChecker;
std::shared_ptr<StatusChecker> m_statusChecker;
std::shared_ptr<MojangAccountList> m_accounts;
std::shared_ptr<IconList> m_icons;
std::shared_ptr<QNetworkAccessManager> m_qnam;