diff options
author | Petr Mrázek <peterix@users.noreply.github.com> | 2021-04-08 22:07:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-08 22:07:03 +0200 |
commit | 4ac38991ad66326a7dfd79eedde02489534e9132 (patch) | |
tree | cad78a85f9d6542d43441fcf6502575f9b880f7f /application/pages/modplatform/flame/FlamePage.h | |
parent | 4ca481b2b34e711112eb7a257fc2385c0dce9dd2 (diff) | |
parent | 1f8408c79340c7cc93fa1677021f3d0dc3f75c34 (diff) | |
download | PrismLauncher-4ac38991ad66326a7dfd79eedde02489534e9132.tar.gz PrismLauncher-4ac38991ad66326a7dfd79eedde02489534e9132.tar.bz2 PrismLauncher-4ac38991ad66326a7dfd79eedde02489534e9132.zip |
Merge pull request #3691 from phit/feature/fixcurse
NOISSUE Curseforge makeover
Diffstat (limited to 'application/pages/modplatform/flame/FlamePage.h')
-rw-r--r-- | application/pages/modplatform/flame/FlamePage.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/application/pages/modplatform/flame/FlamePage.h b/application/pages/modplatform/flame/FlamePage.h index e50186f5..467bb44b 100644 --- a/application/pages/modplatform/flame/FlamePage.h +++ b/application/pages/modplatform/flame/FlamePage.h @@ -20,7 +20,7 @@ #include "pages/BasePage.h" #include <MultiMC.h> #include "tasks/Task.h" -#include "FlameData.h" +#include <modplatform/flame/FlamePackIndex.h> namespace Ui { @@ -68,10 +68,13 @@ private: private slots: void triggerSearch(); void onSelectionChanged(QModelIndex first, QModelIndex second); + void onVersionSelectionChanged(QString data); private: Ui::FlamePage *ui = nullptr; NewInstanceDialog* dialog = nullptr; - Flame::ListModel* model = nullptr; - Flame::Modpack current; + Flame::ListModel* listModel = nullptr; + Flame::IndexedPack current; + + QString selectedVersion; }; |