summaryrefslogtreecommitdiffstats
path: root/application/pages
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2017-03-12 19:45:28 +0100
committerPetr Mrázek <peterix@gmail.com>2017-04-07 00:20:01 +0200
commit2980322c3b34b252ead838daee7a844853feccf6 (patch)
tree4eba831705c497075d30391423a167ebc1c136fc /application/pages
parent8321187a20eec9871f327aa23f421e79dcfdd409 (diff)
downloadMultiMC-2980322c3b34b252ead838daee7a844853feccf6.tar
MultiMC-2980322c3b34b252ead838daee7a844853feccf6.tar.gz
MultiMC-2980322c3b34b252ead838daee7a844853feccf6.tar.lz
MultiMC-2980322c3b34b252ead838daee7a844853feccf6.tar.xz
MultiMC-2980322c3b34b252ead838daee7a844853feccf6.zip
NOISSUE Remove Minecraft version list and versions.
Diffstat (limited to 'application/pages')
-rw-r--r--application/pages/VersionPage.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/application/pages/VersionPage.cpp b/application/pages/VersionPage.cpp
index 8decc649..b90b3e43 100644
--- a/application/pages/VersionPage.cpp
+++ b/application/pages/VersionPage.cpp
@@ -42,8 +42,6 @@
#include "minecraft/liteloader/LiteLoaderInstaller.h"
#include "minecraft/auth/MojangAccountList.h"
#include "minecraft/Mod.h"
-#include "minecraft/MinecraftVersion.h"
-#include "minecraft/MinecraftVersionList.h"
#include "icons/IconList.h"
#include "Exception.h"
@@ -489,6 +487,8 @@ int VersionPage::currentRow()
void VersionPage::on_customizeBtn_clicked()
{
+ // TODO: implement
+ /*
auto version = currentRow();
if(version == -1)
{
@@ -510,6 +510,7 @@ void VersionPage::on_customizeBtn_clicked()
}
updateButtons();
preselect(currentIdx);
+ */
}
void VersionPage::on_editBtn_clicked()
@@ -530,6 +531,8 @@ void VersionPage::on_editBtn_clicked()
void VersionPage::on_revertBtn_clicked()
{
+ // TODO: implement
+ /*
auto version = currentRow();
if(version == -1)
{
@@ -551,6 +554,7 @@ void VersionPage::on_revertBtn_clicked()
updateButtons();
preselect(currentIdx);
m_container->refreshContainer();
+ */
}
#include "VersionPage.moc"