Begin the transformation!
Nuke all the things.
This commit is contained in:
@@ -29,8 +29,6 @@
|
||||
#include "logic/LegacyUpdate.h"
|
||||
#include "logic/icons/IconList.h"
|
||||
|
||||
#include "gui/dialogs/LegacyModEditDialog.h"
|
||||
|
||||
LegacyInstance::LegacyInstance(const QString &rootDir, SettingsObject *settings,
|
||||
QObject *parent)
|
||||
: BaseInstance(new LegacyInstancePrivate(), rootDir, settings, parent)
|
||||
@@ -138,7 +136,7 @@ std::shared_ptr<ModList> LegacyInstance::texturePackList()
|
||||
|
||||
QDialog *LegacyInstance::createModEditDialog(QWidget *parent)
|
||||
{
|
||||
return new LegacyModEditDialog(this, parent);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
QString LegacyInstance::jarModsDir() const
|
||||
@@ -280,10 +278,7 @@ QString LegacyInstance::getStatusbarDescription()
|
||||
{
|
||||
if (flags().contains(VersionBrokenFlag))
|
||||
{
|
||||
return "Legacy : " + intendedVersionId() + " (broken)";
|
||||
return tr("Legacy : %1 (broken)").arg(intendedVersionId());
|
||||
}
|
||||
if (shouldUpdate())
|
||||
return "Legacy : " + currentVersionId() + " -> " + intendedVersionId();
|
||||
else
|
||||
return "Legacy : " + currentVersionId();
|
||||
return tr("Legacy : %1").arg(intendedVersionId());
|
||||
}
|
||||
|
Reference in New Issue
Block a user