aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/dialogs/InstallLoaderDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/ui/dialogs/InstallLoaderDialog.h')
-rw-r--r--launcher/ui/dialogs/InstallLoaderDialog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/launcher/ui/dialogs/InstallLoaderDialog.h b/launcher/ui/dialogs/InstallLoaderDialog.h
index 7a32e427..6c8762dc 100644
--- a/launcher/ui/dialogs/InstallLoaderDialog.h
+++ b/launcher/ui/dialogs/InstallLoaderDialog.h
@@ -24,6 +24,7 @@
class MinecraftInstance;
class PageContainer;
class PackProfile;
+class QDialogButtonBox;
class InstallLoaderDialog : public QDialog, public BasePageProvider {
Q_OBJECT
@@ -34,9 +35,11 @@ class InstallLoaderDialog : public QDialog, public BasePageProvider {
QList<BasePage*> getPages() override;
QString dialogTitle() override;
+ void updateAcceptButton(const BasePage* page);
void done(int result) override;
private:
std::shared_ptr<PackProfile> m_profile;
PageContainer* m_container;
+ QDialogButtonBox* m_buttons;
};