diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-12-01 16:34:51 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-12-01 16:34:51 +0100 |
commit | f56eff04ef4d23b62a6e095eca5d4b9f2b52e023 (patch) | |
tree | d7e5ccd335f4be09d11d3d6bb9c333fa6945516c /gui/dialogs/InstanceSettings.cpp | |
parent | a3fbf05c7b77d513b107e34732b2d04045a05c3c (diff) | |
download | PrismLauncher-f56eff04ef4d23b62a6e095eca5d4b9f2b52e023.tar.gz PrismLauncher-f56eff04ef4d23b62a6e095eca5d4b9f2b52e023.tar.bz2 PrismLauncher-f56eff04ef4d23b62a6e095eca5d4b9f2b52e023.zip |
Fix (hopefully) library dependency resolution.
Installing libs is now enabled, hardcoded.
Enable -Wall for all builds.
Fix many warnings and latent bugs.
Diffstat (limited to 'gui/dialogs/InstanceSettings.cpp')
-rw-r--r-- | gui/dialogs/InstanceSettings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/dialogs/InstanceSettings.cpp b/gui/dialogs/InstanceSettings.cpp index f059047f..bc6b266a 100644 --- a/gui/dialogs/InstanceSettings.cpp +++ b/gui/dialogs/InstanceSettings.cpp @@ -32,7 +32,7 @@ #include <QMessageBox> InstanceSettings::InstanceSettings(SettingsObject *obj, QWidget *parent) - : m_obj(obj), QDialog(parent), ui(new Ui::InstanceSettings) + : QDialog(parent), ui(new Ui::InstanceSettings), m_obj(obj) { MultiMCPlatform::fixWM_CLASS(this); ui->setupUi(this); |