summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2016-10-29 01:34:43 +0200
committerPetr Mrázek <peterix@gmail.com>2016-10-29 01:34:43 +0200
commit2b9017a69ca74a80eea30c7e4f020b1b73d6fd7f (patch)
tree4ae3309d25c9d7e4ad8cb4472662375b8a494fff /application
parent172ff47a659496186df6b6d8c77d0b13ad96b2fe (diff)
downloadMultiMC-2b9017a69ca74a80eea30c7e4f020b1b73d6fd7f.tar
MultiMC-2b9017a69ca74a80eea30c7e4f020b1b73d6fd7f.tar.gz
MultiMC-2b9017a69ca74a80eea30c7e4f020b1b73d6fd7f.tar.lz
MultiMC-2b9017a69ca74a80eea30c7e4f020b1b73d6fd7f.tar.xz
MultiMC-2b9017a69ca74a80eea30c7e4f020b1b73d6fd7f.zip
NOISSUE clean up some bad/dead code
Diffstat (limited to 'application')
-rw-r--r--application/MultiMC.cpp10
-rw-r--r--application/MultiMC.h26
-rw-r--r--application/main.cpp2
3 files changed, 16 insertions, 22 deletions
diff --git a/application/MultiMC.cpp b/application/MultiMC.cpp
index f4c5318f..927468b6 100644
--- a/application/MultiMC.cpp
+++ b/application/MultiMC.cpp
@@ -179,7 +179,7 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
adjustedBy += "Fallback to binary path " + dataPath;
}
- launchId = args["launch"].toString();
+ instanceIdToLaunch = args["launch"].toString();
if (!FS::ensureFolderPathExists(dataPath) || !QDir::setCurrent(dataPath))
{
@@ -220,9 +220,9 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
}
qDebug() << "Binary path : " << binPath;
qDebug() << "Application root path : " << rootPath;
- if(!launchId.isEmpty())
+ if(!instanceIdToLaunch.isEmpty())
{
- qDebug() << "ID of instance to launch : " << launchId;
+ qDebug() << "ID of instance to launch : " << instanceIdToLaunch;
}
// load settings
@@ -400,7 +400,7 @@ void MultiMC::initIcons()
}
-void moveFile(const QString &oldName, const QString &newName)
+static void moveFile(const QString &oldName, const QString &newName)
{
QFile::remove(newName);
QFile::copy(oldName, newName);
@@ -439,7 +439,7 @@ void MultiMC::initLogger()
qInstallMessageHandler(appDebugOutput);
- logFile = std::make_shared<QFile>(logBase.arg(0));
+ logFile = std::unique_ptr<QFile>(new QFile(logBase.arg(0)));
logFile->open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate);
}
diff --git a/application/MultiMC.h b/application/MultiMC.h
index 06819d28..070447fc 100644
--- a/application/MultiMC.h
+++ b/application/MultiMC.h
@@ -87,50 +87,47 @@ public:
std::shared_ptr<JavaInstallList> javalist();
// APPLICATION ONLY
- std::shared_ptr<InstanceList> instances()
+ std::shared_ptr<InstanceList> instances() const
{
return m_instances;
}
- FolderInstanceProvider * folderProvider()
+ FolderInstanceProvider * folderProvider() const
{
return m_instanceFolder;
}
- std::shared_ptr<IconList> icons()
+ std::shared_ptr<IconList> icons() const
{
return m_icons;
}
// APPLICATION ONLY
- std::shared_ptr<MojangAccountList> accounts()
+ std::shared_ptr<MojangAccountList> accounts() const
{
return m_accounts;
}
// APPLICATION ONLY
- Status status()
+ Status status() const
{
return m_status;
}
// APPLICATION ONLY
- QMap<QString, std::shared_ptr<BaseProfilerFactory>> profilers()
+ const QMap<QString, std::shared_ptr<BaseProfilerFactory>> &profilers() const
{
return m_profilers;
}
// APPLICATION ONLY
- QMap<QString, std::shared_ptr<BaseDetachedToolFactory>> tools()
+ const QMap<QString, std::shared_ptr<BaseDetachedToolFactory>> &tools() const
{
return m_tools;
}
// APPLICATION ONLY
- QString getFinishCmd();
void installUpdates(const QString updateFilesDir, GoUpdate::OperationList operations);
- void updateXP(const QString updateFilesDir, GoUpdate::OperationList operations);
- void updateModern(const QString updateFilesDir, GoUpdate::OperationList operations);
/*!
* Opens a json file using either a system default editor, or, if note empty, the editor
@@ -161,16 +158,13 @@ private:
void initSSL();
private:
- friend class UpdateCheckerTest;
- friend class DownloadTaskTest;
-
QDateTime startTime;
std::shared_ptr<QTranslator> m_qt_translator;
std::shared_ptr<QTranslator> m_mmc_translator;
std::shared_ptr<SettingsObject> m_settings;
std::shared_ptr<InstanceList> m_instances;
- FolderInstanceProvider * m_instanceFolder;
+ FolderInstanceProvider * m_instanceFolder = nullptr;
std::shared_ptr<IconList> m_icons;
std::shared_ptr<UpdateChecker> m_updateChecker;
std::shared_ptr<MojangAccountList> m_accounts;
@@ -192,6 +186,6 @@ private:
bool consoleAttached = false;
public:
- QString launchId;
- std::shared_ptr<QFile> logFile;
+ QString instanceIdToLaunch;
+ std::unique_ptr<QFile> logFile;
};
diff --git a/application/main.cpp b/application/main.cpp
index f22cd732..c6847c5d 100644
--- a/application/main.cpp
+++ b/application/main.cpp
@@ -31,7 +31,7 @@ int main_gui(MultiMC &app)
app.setApplicationTheme(MMC->settings()->get("ApplicationTheme").toString());
// show main window
- auto inst = app.instances()->getInstanceById(app.launchId);
+ auto inst = app.instances()->getInstanceById(app.instanceIdToLaunch);
if(inst)
{
return launchInstance(app, inst);