summaryrefslogtreecommitdiffstats
path: root/tools/qmldebugger/standalone/watchtable.cpp
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2009-11-11 01:10:14 (GMT)
committerBea Lam <bea.lam@nokia.com>2009-11-11 01:10:14 (GMT)
commitc44c19cb16e06625f5ee71493190ad4276e4d8ef (patch)
tree06f9a06ba273189dddcce79fa98623d71b86c512 /tools/qmldebugger/standalone/watchtable.cpp
parent9c19362c726d1d80bc38bb07b43eb3439ed05a8b (diff)
downloadQt-c44c19cb16e06625f5ee71493190ad4276e4d8ef.zip
Qt-c44c19cb16e06625f5ee71493190ad4276e4d8ef.tar.gz
Qt-c44c19cb16e06625f5ee71493190ad4276e4d8ef.tar.bz2
Change stateChanged(State) signatures to have (QmlDebugWatch::State)
and (QmlDebugQuery::State) parameters.
Diffstat (limited to 'tools/qmldebugger/standalone/watchtable.cpp')
-rw-r--r--tools/qmldebugger/standalone/watchtable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmldebugger/standalone/watchtable.cpp b/tools/qmldebugger/standalone/watchtable.cpp
index 47c1c88..0e73de5 100644
--- a/tools/qmldebugger/standalone/watchtable.cpp
+++ b/tools/qmldebugger/standalone/watchtable.cpp
@@ -77,7 +77,7 @@ void WatchTableModel::addWatch(QmlDebugWatch *watch, const QString &title)
connect(watch, SIGNAL(valueChanged(QByteArray,QVariant)),
SLOT(watchedValueChanged(QByteArray,QVariant)));
- connect(watch, SIGNAL(stateChanged(State)), SLOT(watchStateChanged()));
+ connect(watch, SIGNAL(stateChanged(QmlDebugWatch::State)), SLOT(watchStateChanged()));
int col = columnCount(QModelIndex());
beginInsertColumns(QModelIndex(), col, col);