diff options
author | Bea Lam <bea.lam@nokia.com> | 2009-09-24 06:19:56 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2009-09-24 06:19:56 (GMT) |
commit | f1e06cdd804934ff8c0b350b41d3d7187a21560c (patch) | |
tree | 8cc7053f90d6155f0336e7ac808e21081f48d9c3 /src/declarative/debugger/qmldebug.h | |
parent | ca244487b4ecc71f14ef6e0d371e848620b15b8d (diff) | |
download | Qt-f1e06cdd804934ff8c0b350b41d3d7187a21560c.zip Qt-f1e06cdd804934ff8c0b350b41d3d7187a21560c.tar.gz Qt-f1e06cdd804934ff8c0b350b41d3d7187a21560c.tar.bz2 |
Indicate which properties are watchable and use bold text instead of
coloured text for watched properties.
Diffstat (limited to 'src/declarative/debugger/qmldebug.h')
-rw-r--r-- | src/declarative/debugger/qmldebug.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/declarative/debugger/qmldebug.h b/src/declarative/debugger/qmldebug.h index be28a7e..9fd5fae 100644 --- a/src/declarative/debugger/qmldebug.h +++ b/src/declarative/debugger/qmldebug.h @@ -229,6 +229,7 @@ public: QString name() const; QVariant value() const; QString binding() const; + bool hasNotifySignal() const; private: friend class QmlEngineDebugPrivate; @@ -236,6 +237,7 @@ private: QString m_name; QVariant m_value; QString m_binding; + bool m_hasNotifySignal; }; |