aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/stackhandler.h
diff options
context:
space:
mode:
authorOswald Buddenhagen <[email protected]>2009-04-16 19:42:58 +0200
committerOswald Buddenhagen <[email protected]>2009-04-20 16:51:10 +0200
commitc5df15003bf4486440a2925f0fdb76a55b8522e6 (patch)
treeb54d8eae38ca43943e64db45ab6e072d488ec20e /src/plugins/debugger/stackhandler.h
parent6d5eeb7afbf6bb29681b9dd88d4e1321ed1f8674 (diff)
add some missing Q_OBJECTs
Diffstat (limited to 'src/plugins/debugger/stackhandler.h')
-rw-r--r--src/plugins/debugger/stackhandler.h4
1 files changed, 4 insertions, 0 deletions
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);