summaryrefslogtreecommitdiffstats
path: root/logic/OneSixInstance.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2014-06-18 01:15:01 +0200
committerPetr Mrázek <peterix@gmail.com>2014-06-18 01:15:01 +0200
commitd911c9908c11c42144084c862c64b740cfb0c02f (patch)
tree974bafaf530afe4076850a21f91a1b4b911c32f1 /logic/OneSixInstance.cpp
parent702e00e0593b03603690717646dac5e4fae504d3 (diff)
downloadMultiMC-d911c9908c11c42144084c862c64b740cfb0c02f.tar
MultiMC-d911c9908c11c42144084c862c64b740cfb0c02f.tar.gz
MultiMC-d911c9908c11c42144084c862c64b740cfb0c02f.tar.lz
MultiMC-d911c9908c11c42144084c862c64b740cfb0c02f.tar.xz
MultiMC-d911c9908c11c42144084c862c64b740cfb0c02f.zip
Replace notes dialog with a page.
Diffstat (limited to 'logic/OneSixInstance.cpp')
-rw-r--r--logic/OneSixInstance.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/logic/OneSixInstance.cpp b/logic/OneSixInstance.cpp
index d3b35512..30e62d73 100644
--- a/logic/OneSixInstance.cpp
+++ b/logic/OneSixInstance.cpp
@@ -35,6 +35,7 @@
#include <gui/pages/ResourcePackPage.h>
#include <gui/pages/TexturePackPage.h>
#include <gui/pages/InstanceSettingsPage.h>
+#include <gui/pages/NotesPage.h>
OneSixInstance::OneSixInstance(const QString &rootDir, SettingsObject *settings,
QObject *parent)
@@ -67,6 +68,7 @@ QList<BasePage *> OneSixInstance::getPages()
"Core-mods"));
values.append(new ResourcePackPage(this));
values.append(new TexturePackPage(this));
+ values.append(new NotesPage(this));
values.append(new InstanceSettingsPage(&settings()));
return values;
}