summaryrefslogtreecommitdiffstats
path: root/application/MultiMC.cpp
diff options
context:
space:
mode:
authorThomas Groman <tgroman@nuegia.net>2020-12-22 22:13:43 -0800
committerThomas Groman <tgroman@nuegia.net>2020-12-22 22:13:43 -0800
commitb57d6e6353a3048a4052201bf2a56bea00d94b0a (patch)
tree096a19426e9582a5cf556e7e3c162aeb2b8090a0 /application/MultiMC.cpp
parent0eac6faf8cb4ca66884487581eb4df2e44ce1a63 (diff)
downloadMultiMC-0.6.7-tom.tar
MultiMC-0.6.7-tom.tar.gz
MultiMC-0.6.7-tom.tar.lz
MultiMC-0.6.7-tom.tar.xz
MultiMC-0.6.7-tom.zip
clean up vistigual UI elementsv0.6.7-tom
Diffstat (limited to 'application/MultiMC.cpp')
-rw-r--r--application/MultiMC.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/application/MultiMC.cpp b/application/MultiMC.cpp
index 5626b672..d550987f 100644
--- a/application/MultiMC.cpp
+++ b/application/MultiMC.cpp
@@ -15,7 +15,6 @@
#include "pages/global/ExternalToolsPage.h"
#include "pages/global/AccountListPage.h"
#include "pages/global/PasteEEPage.h"
-#include "pages/global/PackagesPage.h"
#include "pages/global/CustomCommandsPage.h"
#include "themes/ITheme.h"
@@ -27,7 +26,6 @@
#include "setupwizard/SetupWizard.h"
#include "setupwizard/LanguageWizardPage.h"
#include "setupwizard/JavaWizardPage.h"
-#include "setupwizard/AnalyticsWizardPage.h"
#include <iostream>
#include <QDir>
@@ -518,7 +516,6 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
m_globalSettingsProvider->addPage<LanguagePage>();
m_globalSettingsProvider->addPage<CustomCommandsPage>();
m_globalSettingsProvider->addPage<ProxyPage>();
- // m_globalSettingsProvider->addPage<PackagesPage>();
m_globalSettingsProvider->addPage<ExternalToolsPage>();
m_globalSettingsProvider->addPage<AccountListPage>();
m_globalSettingsProvider->addPage<PasteEEPage>();
@@ -793,23 +790,6 @@ void MultiMC::messageReceived(const QString& message)
}
}
}
-/*
-void MultiMC::analyticsSettingChanged(const Setting&, QVariant value)
-{
- if(!m_analytics)
- return;
- bool enabled = value.toBool();
- if(enabled)
- {
- qDebug() << "Analytics enabled by user.";
- }
- else
- {
- qDebug() << "Analytics disabled by user.";
- }
- m_analytics->enable(enabled);
-}
-*/
std::shared_ptr<TranslationsModel> MultiMC::translations()
{
return m_translations;