summaryrefslogtreecommitdiffstats
path: root/gui/EditNotesDialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/EditNotesDialog.cpp')
-rw-r--r--gui/EditNotesDialog.cpp2
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));