diff options
author | Petr Mrázek <peterix@gmail.com> | 2018-07-15 14:04:09 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2018-07-15 14:04:09 +0200 |
commit | 03280cc62e75f8073f8d3d9e9e3952acf21fa77d (patch) | |
tree | 06f7546fb4941b51ca2367d9cdb257011271452a /application/pages/instance/ModFolderPage.cpp | |
parent | 128bce6acb4fa320b70e580b2d2e0db5d41db8e6 (diff) | |
download | MultiMC-03280cc62e75f8073f8d3d9e9e3952acf21fa77d.tar MultiMC-03280cc62e75f8073f8d3d9e9e3952acf21fa77d.tar.gz MultiMC-03280cc62e75f8073f8d3d9e9e3952acf21fa77d.tar.lz MultiMC-03280cc62e75f8073f8d3d9e9e3952acf21fa77d.tar.xz MultiMC-03280cc62e75f8073f8d3d9e9e3952acf21fa77d.zip |
NOISSUE separate new mods model from the simple one
It should list mods in various locations...
Diffstat (limited to 'application/pages/instance/ModFolderPage.cpp')
-rw-r--r-- | application/pages/instance/ModFolderPage.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/application/pages/instance/ModFolderPage.cpp b/application/pages/instance/ModFolderPage.cpp index 90155df3..0309383d 100644 --- a/application/pages/instance/ModFolderPage.cpp +++ b/application/pages/instance/ModFolderPage.cpp @@ -25,13 +25,13 @@ #include "dialogs/CustomMessageBox.h" #include "dialogs/ModEditDialogCommon.h" #include <GuiUtil.h> -#include "minecraft/ModList.h" +#include "minecraft/SimpleModList.h" #include "minecraft/Mod.h" #include "minecraft/VersionFilterData.h" #include "minecraft/ComponentList.h" #include <DesktopServices.h> -ModFolderPage::ModFolderPage(BaseInstance *inst, std::shared_ptr<ModList> mods, QString id, +ModFolderPage::ModFolderPage(BaseInstance *inst, std::shared_ptr<SimpleModList> mods, QString id, QString iconName, QString displayName, QString helpPage, QWidget *parent) : QWidget(parent), ui(new Ui::ModFolderPage) @@ -76,7 +76,7 @@ void ModFolderPage::on_filterTextChanged(const QString& newContents) } -CoreModFolderPage::CoreModFolderPage(BaseInstance *inst, std::shared_ptr<ModList> mods, +CoreModFolderPage::CoreModFolderPage(BaseInstance *inst, std::shared_ptr<SimpleModList> mods, QString id, QString iconName, QString displayName, QString helpPage, QWidget *parent) : ModFolderPage(inst, mods, id, iconName, displayName, helpPage, parent) |