aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/plugins/cpptools/completionsettingspage.h2
-rw-r--r--src/plugins/debugger/debuggeroutputwindow.cpp2
-rw-r--r--src/plugins/debugger/disassemblerhandler.cpp4
-rw-r--r--src/plugins/debugger/moduleshandler.cpp4
-rw-r--r--src/plugins/debugger/sourcefileswindow.cpp3
-rw-r--r--src/plugins/debugger/stackhandler.h4
-rw-r--r--src/plugins/projectexplorer/currentprojectfind.h2
-rw-r--r--src/plugins/projectexplorer/foldernavigationwidget.h1
-rw-r--r--src/plugins/projectexplorer/projecttreewidget.h1
-rw-r--r--src/plugins/projectexplorer/sessiondialog.cpp3
-rw-r--r--src/plugins/quickopen/quickopenfiltersfilter.h2
11 files changed, 28 insertions, 0 deletions
diff --git a/src/plugins/cpptools/completionsettingspage.h b/src/plugins/cpptools/completionsettingspage.h
index 48c16a729d1..a192fb1d12a 100644
--- a/src/plugins/cpptools/completionsettingspage.h
+++ b/src/plugins/cpptools/completionsettingspage.h
@@ -43,6 +43,8 @@ class CppCodeCompletion;
class CompletionSettingsPage : public Core::IOptionsPage
{
+ Q_OBJECT
+
public:
CompletionSettingsPage(CppCodeCompletion *completion);
~CompletionSettingsPage();
diff --git a/src/plugins/debugger/debuggeroutputwindow.cpp b/src/plugins/debugger/debuggeroutputwindow.cpp
index 816d65c794a..c9b622c0754 100644
--- a/src/plugins/debugger/debuggeroutputwindow.cpp
+++ b/src/plugins/debugger/debuggeroutputwindow.cpp
@@ -62,6 +62,8 @@ using namespace Debugger::Internal;
class DebuggerPane : public QPlainTextEdit
{
+ Q_OBJECT
+
public:
DebuggerPane(QWidget *parent)
: QPlainTextEdit(parent)
diff --git a/src/plugins/debugger/disassemblerhandler.cpp b/src/plugins/debugger/disassemblerhandler.cpp
index ee03f6cfd55..7b2285bf411 100644
--- a/src/plugins/debugger/disassemblerhandler.cpp
+++ b/src/plugins/debugger/disassemblerhandler.cpp
@@ -57,6 +57,8 @@ void DisassemblerLine::clear()
/*! A model to represent the stack in a QTreeView. */
class Debugger::Internal::DisassemblerModel : public QAbstractTableModel
{
+ Q_OBJECT
+
public:
DisassemblerModel(QObject *parent);
@@ -188,3 +190,5 @@ void DisassemblerHandler::setCurrentLine(int line)
{
m_model->setCurrentLine(line);
}
+
+#include "disassemblerhandler.moc"
diff --git a/src/plugins/debugger/moduleshandler.cpp b/src/plugins/debugger/moduleshandler.cpp
index 0cb3282947e..19e7058c1e3 100644
--- a/src/plugins/debugger/moduleshandler.cpp
+++ b/src/plugins/debugger/moduleshandler.cpp
@@ -53,6 +53,8 @@ using namespace Debugger::Internal;
class Debugger::Internal::ModulesModel : public QAbstractItemModel
{
+ Q_OBJECT
+
public:
ModulesModel(ModulesHandler *parent)
: QAbstractItemModel(parent)
@@ -167,3 +169,5 @@ QList<Module> ModulesHandler::modules() const
{
return m_model->m_modules;
}
+
+#include "moduleshandler.moc"
diff --git a/src/plugins/debugger/sourcefileswindow.cpp b/src/plugins/debugger/sourcefileswindow.cpp
index 7b927cd4de8..6f36a8f1f32 100644
--- a/src/plugins/debugger/sourcefileswindow.cpp
+++ b/src/plugins/debugger/sourcefileswindow.cpp
@@ -53,6 +53,8 @@ using Debugger::Internal::SourceFilesModel;
class Debugger::Internal::SourceFilesModel : public QAbstractItemModel
{
+ Q_OBJECT
+
public:
SourceFilesModel(QObject *parent = 0) : QAbstractItemModel(parent) {}
@@ -229,3 +231,4 @@ void SourceFilesWindow::removeAll()
header()->setResizeMode(0, QHeaderView::ResizeToContents);
}
+#include "sourcefileswindow.moc"
diff --git a/src/plugins/debugger/stackhandler.h b/src/plugins/debugger/stackhandler.h
index ba88b15b447..12f771464a8 100644
--- a/src/plugins/debugger/stackhandler.h
+++ b/src/plugins/debugger/stackhandler.h
@@ -61,6 +61,8 @@ struct StackFrame
/*! A model to represent the stack in a QTreeView. */
class StackHandler : public QAbstractTableModel
{
+ Q_OBJECT
+
public:
StackHandler(QObject *parent = 0);
@@ -106,6 +108,8 @@ struct ThreadData
/*! A model to represent the running threads in a QTreeView or ComboBox */
class ThreadsHandler : public QAbstractTableModel
{
+ Q_OBJECT
+
public:
ThreadsHandler(QObject *parent = 0);
diff --git a/src/plugins/projectexplorer/currentprojectfind.h b/src/plugins/projectexplorer/currentprojectfind.h
index e24b6490a32..52fcde5c09f 100644
--- a/src/plugins/projectexplorer/currentprojectfind.h
+++ b/src/plugins/projectexplorer/currentprojectfind.h
@@ -45,6 +45,8 @@ namespace Internal {
class CurrentProjectFind : public TextEditor::BaseFileFind
{
+ Q_OBJECT
+
public:
CurrentProjectFind(ProjectExplorerPlugin *plugin, Find::SearchResultWindow *resultWindow);
diff --git a/src/plugins/projectexplorer/foldernavigationwidget.h b/src/plugins/projectexplorer/foldernavigationwidget.h
index e3955b10ff7..f1b0baf0b84 100644
--- a/src/plugins/projectexplorer/foldernavigationwidget.h
+++ b/src/plugins/projectexplorer/foldernavigationwidget.h
@@ -77,6 +77,7 @@ private:
class FolderNavigationWidgetFactory : public Core::INavigationWidgetFactory
{
+ Q_OBJECT
public:
FolderNavigationWidgetFactory();
virtual ~FolderNavigationWidgetFactory();
diff --git a/src/plugins/projectexplorer/projecttreewidget.h b/src/plugins/projectexplorer/projecttreewidget.h
index 4b536f1cff1..0313a18f197 100644
--- a/src/plugins/projectexplorer/projecttreewidget.h
+++ b/src/plugins/projectexplorer/projecttreewidget.h
@@ -95,6 +95,7 @@ private:
class ProjectTreeWidgetFactory : public Core::INavigationWidgetFactory
{
+ Q_OBJECT
public:
ProjectTreeWidgetFactory();
virtual ~ProjectTreeWidgetFactory();
diff --git a/src/plugins/projectexplorer/sessiondialog.cpp b/src/plugins/projectexplorer/sessiondialog.cpp
index c03c15a8d83..f36a028f9a2 100644
--- a/src/plugins/projectexplorer/sessiondialog.cpp
+++ b/src/plugins/projectexplorer/sessiondialog.cpp
@@ -76,6 +76,7 @@ void SessionValidator::fixup(QString &input) const
class NewSessionInputDialog : public QDialog
{
+ Q_OBJECT
public:
NewSessionInputDialog(QStringList sessions);
QString value();
@@ -188,3 +189,5 @@ void SessionDialog::remove()
} // namespace Internal
} // namespace ProjectExplorer
+
+#include "sessiondialog.moc"
diff --git a/src/plugins/quickopen/quickopenfiltersfilter.h b/src/plugins/quickopen/quickopenfiltersfilter.h
index d9f7e31f8b4..b4d48cd6409 100644
--- a/src/plugins/quickopen/quickopenfiltersfilter.h
+++ b/src/plugins/quickopen/quickopenfiltersfilter.h
@@ -46,6 +46,8 @@ class QuickOpenToolWindow;
*/
class QuickOpenFiltersFilter : public IQuickOpenFilter
{
+ Q_OBJECT
+
public:
QuickOpenFiltersFilter(QuickOpenPlugin *plugin,
QuickOpenToolWindow *toolWindow);