diff options
author | Tobias Hunger <tobias.hunger@nokia.com> | 2010-07-08 12:36:43 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@nokia.com> | 2010-07-08 12:36:43 +0200 |
commit | 74861fa16106c8d053c5a69228abbb9d6aea5557 (patch) | |
tree | ba9d20e060ca53c6c07381cab7c501e921d3eadc /src | |
parent | 574afeb5512adf1ed4e7d4c62a9115132c6bfdbd (diff) | |
download | qt-creator-74861fa16106c8d053c5a69228abbb9d6aea5557.tar.gz |
Add some missign Q_OBJECT macros
Diffstat (limited to 'src')
4 files changed, 8 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/copytaskhandler.h b/src/plugins/projectexplorer/copytaskhandler.h index 0d8de5c199..27e6beb465 100644 --- a/src/plugins/projectexplorer/copytaskhandler.h +++ b/src/plugins/projectexplorer/copytaskhandler.h @@ -39,6 +39,8 @@ namespace Internal { class PROJECTEXPLORER_EXPORT CopyTaskHandler : public ITaskHandler { + Q_OBJECT + public: CopyTaskHandler(); diff --git a/src/plugins/projectexplorer/showineditortaskhandler.h b/src/plugins/projectexplorer/showineditortaskhandler.h index a440f2f751..09cc874f3d 100644 --- a/src/plugins/projectexplorer/showineditortaskhandler.h +++ b/src/plugins/projectexplorer/showineditortaskhandler.h @@ -39,6 +39,8 @@ namespace Internal { class PROJECTEXPLORER_EXPORT ShowInEditorTaskHandler : public ITaskHandler { + Q_OBJECT + public: ShowInEditorTaskHandler(); diff --git a/src/plugins/projectexplorer/showoutputtaskhandler.h b/src/plugins/projectexplorer/showoutputtaskhandler.h index 157de4757c..b53f81f0c5 100644 --- a/src/plugins/projectexplorer/showoutputtaskhandler.h +++ b/src/plugins/projectexplorer/showoutputtaskhandler.h @@ -41,6 +41,8 @@ class CompileOutputWindow; class PROJECTEXPLORER_EXPORT ShowOutputTaskHandler : public ITaskHandler { + Q_OBJECT + public: ShowOutputTaskHandler(CompileOutputWindow *); diff --git a/src/plugins/projectexplorer/vcsannotatetaskhandler.h b/src/plugins/projectexplorer/vcsannotatetaskhandler.h index 1c34199b4a..27fa40a804 100644 --- a/src/plugins/projectexplorer/vcsannotatetaskhandler.h +++ b/src/plugins/projectexplorer/vcsannotatetaskhandler.h @@ -46,6 +46,8 @@ namespace Internal { class PROJECTEXPLORER_EXPORT VcsAnnotateTaskHandler : public ITaskHandler { + Q_OBJECT + public: VcsAnnotateTaskHandler(); |