diff options
author | Sky <git@bunnies.cc> | 2013-10-18 18:10:41 +0100 |
---|---|---|
committer | Sky <git@bunnies.cc> | 2013-10-18 18:10:41 +0100 |
commit | b2574542b1d456a46baa8e6c0d351157b9cb18b3 (patch) | |
tree | e004e0894ae40b9a63160ea237b4ef4ec9aceda3 /gui/EditNotesDialog.cpp | |
parent | 709252fe9ecec3cc388966d695844f2593029c4f (diff) | |
parent | dcf58cdf12ae9370ba1bf9d6bb789649db82e520 (diff) | |
download | PrismLauncher-b2574542b1d456a46baa8e6c0d351157b9cb18b3.tar.gz PrismLauncher-b2574542b1d456a46baa8e6c0d351157b9cb18b3.tar.bz2 PrismLauncher-b2574542b1d456a46baa8e6c0d351157b9cb18b3.zip |
Merge branch 'develop' of github.com:MultiMC/MultiMC5 into develop
Diffstat (limited to 'gui/EditNotesDialog.cpp')
-rw-r--r-- | gui/EditNotesDialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/EditNotesDialog.cpp b/gui/EditNotesDialog.cpp index 5b90ef53..535ca804 100644 --- a/gui/EditNotesDialog.cpp +++ b/gui/EditNotesDialog.cpp @@ -1,5 +1,6 @@ #include "EditNotesDialog.h" #include "ui_EditNotesDialog.h" +#include "gui/platform.h" #include <QIcon> #include <QApplication> @@ -10,6 +11,7 @@ EditNotesDialog::EditNotesDialog( QString notes, QString name, QWidget* parent ) QDialog(parent), ui(new Ui::EditNotesDialog) { + MultiMCPlatform::fixWM_CLASS(this); ui->setupUi(this); ui->noteEditor->setText(notes); setWindowTitle(tr("Edit notes of %1").arg(m_instance_name)); |