PrismLauncher/application/pages/modplatform/TwitchPage.cpp

27 lines
444 B
C++
Raw Normal View History

2018-03-19 01:36:12 +00:00
#include "TwitchPage.h"
#include "ui_TwitchPage.h"
#include "MultiMC.h"
#include "dialogs/NewInstanceDialog.h"
TwitchPage::TwitchPage(NewInstanceDialog* dialog, QWidget *parent)
2018-07-15 13:51:05 +01:00
: QWidget(parent), ui(new Ui::TwitchPage), dialog(dialog)
2018-03-19 01:36:12 +00:00
{
2018-07-15 13:51:05 +01:00
ui->setupUi(this);
2018-03-19 01:36:12 +00:00
}
TwitchPage::~TwitchPage()
{
2018-07-15 13:51:05 +01:00
delete ui;
2018-03-19 01:36:12 +00:00
}
bool TwitchPage::shouldDisplay() const
{
2018-07-15 13:51:05 +01:00
return false;
2018-03-19 01:36:12 +00:00
}
void TwitchPage::openedImpl()
{
2018-07-15 13:51:05 +01:00
dialog->setSuggestedPack();
2018-03-19 01:36:12 +00:00
}