diff options
author | Bea Lam <bea.lam@nokia.com> | 2009-11-11 01:10:14 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2009-11-11 01:10:14 (GMT) |
commit | c44c19cb16e06625f5ee71493190ad4276e4d8ef (patch) | |
tree | 06f9a06ba273189dddcce79fa98623d71b86c512 /tools/qmldebugger/standalone/objectpropertiesview.cpp | |
parent | 9c19362c726d1d80bc38bb07b43eb3439ed05a8b (diff) | |
download | Qt-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/objectpropertiesview.cpp')
-rw-r--r-- | tools/qmldebugger/standalone/objectpropertiesview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/qmldebugger/standalone/objectpropertiesview.cpp b/tools/qmldebugger/standalone/objectpropertiesview.cpp index abfb7a5..3a8d8c8 100644 --- a/tools/qmldebugger/standalone/objectpropertiesview.cpp +++ b/tools/qmldebugger/standalone/objectpropertiesview.cpp @@ -124,7 +124,7 @@ void ObjectPropertiesView::reload(const QmlDebugObjectReference &obj) if (!m_query->isWaiting()) queryFinished(); else - QObject::connect(m_query, SIGNAL(stateChanged(State)), + QObject::connect(m_query, SIGNAL(stateChanged(QmlDebugQuery::State)), this, SLOT(queryFinished())); } @@ -223,7 +223,7 @@ void ObjectPropertiesView::watchCreated(QmlDebugWatch *watch) { if (watch->objectDebugId() == m_object.debugId() && qobject_cast<QmlDebugPropertyWatch*>(watch)) { - connect(watch, SIGNAL(stateChanged(State)), SLOT(watchStateChanged())); + connect(watch, SIGNAL(stateChanged(QmlDebugWatch::State)), SLOT(watchStateChanged())); setWatched(qobject_cast<QmlDebugPropertyWatch*>(watch)->name(), true); } } |