diff options
author | Friedemann Kleint <Friedemann.Kleint@digia.com> | 2014-02-21 17:07:39 +0100 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@digia.com> | 2014-02-24 11:08:53 +0100 |
commit | 167206f8fb5d6617b353c85f2b080bcb4c87f108 (patch) | |
tree | 404d80f3be3288fa5275997f179c249183d377d8 | |
parent | d9f6b7da2a53e603bf81325a55b2386c7e5127c4 (diff) | |
download | qt-creator-167206f8fb5d6617b353c85f2b080bcb4c87f108.tar.gz |
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>
-rw-r--r-- | src/plugins/resourceeditor/resourceeditorplugin.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/resourceeditor/resourceeditorplugin.cpp b/src/plugins/resourceeditor/resourceeditorplugin.cpp index ebf63acb14..ca533b9406 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" |