Replace notes dialog with a page.

This commit is contained in:
Petr Mrázek 2014-06-18 01:15:01 +02:00
parent 702e00e059
commit d911c9908c
9 changed files with 124 additions and 164 deletions

View file

@ -33,6 +33,7 @@
#include "gui/pages/LegacyJarModPage.h"
#include <gui/pages/TexturePackPage.h>
#include <gui/pages/InstanceSettingsPage.h>
#include <gui/pages/NotesPage.h>
LegacyInstance::LegacyInstance(const QString &rootDir, SettingsObject *settings,
QObject *parent)
@ -55,6 +56,7 @@ QList<BasePage *> LegacyInstance::getPages()
values.append(new ModFolderPage(coreModList(), "coremods", "plugin-green", tr("Core mods"),
"Core-mods"));
values.append(new TexturePackPage(this));
values.append(new NotesPage(this));
values.append(new InstanceSettingsPage(&settings()));
return values;
}