summaryrefslogtreecommitdiffstats
path: root/application/pages/LegacyUpgradePage.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2017-07-23 21:29:03 +0200
committerPetr Mrázek <peterix@gmail.com>2017-09-09 18:30:22 +0200
commitb29382c748353856053f07b4756fa98f854244e1 (patch)
treef87f95bf99dd0a7251df2a8f8ada2244d402c244 /application/pages/LegacyUpgradePage.cpp
parent4c01983f470e25dfd4c997201370057bba64832e (diff)
downloadMultiMC-b29382c748353856053f07b4756fa98f854244e1.tar
MultiMC-b29382c748353856053f07b4756fa98f854244e1.tar.gz
MultiMC-b29382c748353856053f07b4756fa98f854244e1.tar.lz
MultiMC-b29382c748353856053f07b4756fa98f854244e1.tar.xz
MultiMC-b29382c748353856053f07b4756fa98f854244e1.zip
NOISSUE Remove Legacy support
Diffstat (limited to 'application/pages/LegacyUpgradePage.cpp')
-rw-r--r--application/pages/LegacyUpgradePage.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/application/pages/LegacyUpgradePage.cpp b/application/pages/LegacyUpgradePage.cpp
deleted file mode 100644
index 14cb916d..00000000
--- a/application/pages/LegacyUpgradePage.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-#include "LegacyUpgradePage.h"
-#include "ui_LegacyUpgradePage.h"
-
-#include "minecraft/legacy/LegacyInstance.h"
-
-LegacyUpgradePage::LegacyUpgradePage(LegacyInstance *inst, QWidget *parent)
- : QWidget(parent), ui(new Ui::LegacyUpgradePage), m_inst(inst)
-{
- ui->setupUi(this);
-}
-
-LegacyUpgradePage::~LegacyUpgradePage()
-{
- delete ui;
-}
-
-void LegacyUpgradePage::on_upgradeButton_clicked()
-{
- // now what?
-}
-
-bool LegacyUpgradePage::shouldDisplay() const
-{
- return !m_inst->isRunning();
-}