aboutsummaryrefslogtreecommitdiff
path: root/launcher/pages/global/ProxyPage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/pages/global/ProxyPage.cpp')
-rw-r--r--launcher/pages/global/ProxyPage.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/pages/global/ProxyPage.cpp b/launcher/pages/global/ProxyPage.cpp
index 809059ff..d4e767e1 100644
--- a/launcher/pages/global/ProxyPage.cpp
+++ b/launcher/pages/global/ProxyPage.cpp
@@ -19,7 +19,7 @@
#include <QTabBar>
#include "settings/SettingsObject.h"
-#include "MultiMC.h"
+#include "Launcher.h"
#include "Env.h"
ProxyPage::ProxyPage(QWidget *parent) : QWidget(parent), ui(new Ui::ProxyPage)
@@ -58,7 +58,7 @@ void ProxyPage::proxyChanged(int)
void ProxyPage::applySettings()
{
- auto s = MMC->settings();
+ auto s = LAUNCHER->settings();
// Proxy
QString proxyType = "None";
@@ -82,7 +82,7 @@ void ProxyPage::applySettings()
}
void ProxyPage::loadSettings()
{
- auto s = MMC->settings();
+ auto s = LAUNCHER->settings();
// Proxy
QString proxyType = s->get("ProxyType").toString();
if (proxyType == "Default")