aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/resourceeditor
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2014-02-21 17:07:39 +0100
committerFriedemann Kleint <Friedemann.Kleint@digia.com>2014-02-24 11:08:53 +0100
commit167206f8fb5d6617b353c85f2b080bcb4c87f108 (patch)
tree404d80f3be3288fa5275997f179c249183d377d8 /src/plugins/resourceeditor
parentd9f6b7da2a53e603bf81325a55b2386c7e5127c4 (diff)
Resource Editor: Add missing Q_OBJECT to PrefixLangDialog.
src/plugins/resourceeditor/resourceeditorplugin.cpp:74: Class 'PrefixLangDialog' lacks Q_OBJECT macro Change-Id: I183f670dc851de043e0a16d6060c069a9393ec99 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Diffstat (limited to 'src/plugins/resourceeditor')
-rw-r--r--src/plugins/resourceeditor/resourceeditorplugin.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/resourceeditor/resourceeditorplugin.cpp b/src/plugins/resourceeditor/resourceeditorplugin.cpp
index ebf63acb144..ca533b9406c 100644
--- a/src/plugins/resourceeditor/resourceeditorplugin.cpp
+++ b/src/plugins/resourceeditor/resourceeditorplugin.cpp
@@ -63,6 +63,7 @@ using namespace ResourceEditor::Internal;
class PrefixLangDialog : public QDialog
{
+ Q_OBJECT
public:
PrefixLangDialog(const QString &title, const QString &prefix, const QString &lang, QWidget *parent)
: QDialog(parent)
@@ -333,3 +334,5 @@ ResourceEditorW * ResourceEditorPlugin::currentEditor() const
}
Q_EXPORT_PLUGIN(ResourceEditorPlugin)
+
+#include "resourceeditorplugin.moc"