aboutsummaryrefslogtreecommitdiff
path: root/launcher/pages/instance/LogPage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/pages/instance/LogPage.cpp')
-rw-r--r--launcher/pages/instance/LogPage.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/pages/instance/LogPage.cpp b/launcher/pages/instance/LogPage.cpp
index 3d2085c6..2399b55d 100644
--- a/launcher/pages/instance/LogPage.cpp
+++ b/launcher/pages/instance/LogPage.cpp
@@ -1,7 +1,7 @@
#include "LogPage.h"
#include "ui_LogPage.h"
-#include "MultiMC.h"
+#include "Launcher.h"
#include <QIcon>
#include <QScrollBar>
@@ -124,9 +124,9 @@ LogPage::LogPage(InstancePtr instance, QWidget *parent)
// set up fonts in the log proxy
{
- QString fontFamily = MMC->settings()->get("ConsoleFont").toString();
+ QString fontFamily = LAUNCHER->settings()->get("ConsoleFont").toString();
bool conversionOk = false;
- int fontSize = MMC->settings()->get("ConsoleFontSize").toInt(&conversionOk);
+ int fontSize = LAUNCHER->settings()->get("ConsoleFontSize").toInt(&conversionOk);
if(!conversionOk)
{
fontSize = 11;