diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-01-27 22:31:07 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-04-02 00:14:06 +0200 |
commit | 791221e923586bb717396ecf18bd13e57034df99 (patch) | |
tree | 9f608af07375b38626c8964671620477158341ba /logic/LegacyFTBInstance.cpp | |
parent | 593111b14463e9d5d08256061b981b5ab1cfb710 (diff) | |
download | MultiMC-791221e923586bb717396ecf18bd13e57034df99.tar MultiMC-791221e923586bb717396ecf18bd13e57034df99.tar.gz MultiMC-791221e923586bb717396ecf18bd13e57034df99.tar.lz MultiMC-791221e923586bb717396ecf18bd13e57034df99.tar.xz MultiMC-791221e923586bb717396ecf18bd13e57034df99.zip |
NOISSUE Refactors and moving of things
Diffstat (limited to 'logic/LegacyFTBInstance.cpp')
-rw-r--r-- | logic/LegacyFTBInstance.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/logic/LegacyFTBInstance.cpp b/logic/LegacyFTBInstance.cpp deleted file mode 100644 index 06bef948..00000000 --- a/logic/LegacyFTBInstance.cpp +++ /dev/null @@ -1,20 +0,0 @@ -#include "LegacyFTBInstance.h" - -LegacyFTBInstance::LegacyFTBInstance(const QString &rootDir, SettingsObject *settings, QObject *parent) : - LegacyInstance(rootDir, settings, parent) -{ -} - -QString LegacyFTBInstance::getStatusbarDescription() -{ - if (flags() & VersionBrokenFlag) - { - return "Legacy FTB: " + intendedVersionId() + " (broken)"; - } - return "Legacy FTB: " + intendedVersionId(); -} - -QString LegacyFTBInstance::id() const -{ - return "FTB/" + BaseInstance::id(); -} |