diff options
| author | hjk <hjk121@nokiamail.com> | 2013-08-17 00:59:42 +0200 |
|---|---|---|
| committer | hjk <hjk121@nokiamail.com> | 2013-08-19 12:17:41 +0200 |
| commit | adc9817671e2ad1fcccfb51f4ed4509eeaef9f45 (patch) | |
| tree | 1313e8b3a7ed63ec3f5dc84c04378644c17be154 /src/plugins/debugger/qml/qmlengine.cpp | |
| parent | e666da622c3a3c7937b75751e1c5d4ddc57be3ba (diff) | |
| download | qt-creator-adc9817671e2ad1fcccfb51f4ed4509eeaef9f45.tar.gz | |
Debugger: Remove some deprecated methods
Change-Id: I67254bb6d3d23e9fa9e121df0b3b923330cfe84a
Reviewed-by: Aurindam Jana <aurindam.jana@digia.com>
Diffstat (limited to 'src/plugins/debugger/qml/qmlengine.cpp')
| -rw-r--r-- | src/plugins/debugger/qml/qmlengine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp index 70567f34e2..08d93457eb 100644 --- a/src/plugins/debugger/qml/qmlengine.cpp +++ b/src/plugins/debugger/qml/qmlengine.cpp @@ -372,7 +372,7 @@ void QmlEngine::connectionEstablished() if (!watchHandler()->watcherNames().isEmpty()) synchronizeWatchers(); - connect(watchersModel(),SIGNAL(layoutChanged()),this,SLOT(synchronizeWatchers())); + connect(watchModel(),SIGNAL(layoutChanged()),this,SLOT(synchronizeWatchers())); if (state() == EngineRunRequested) notifyEngineRunAndInferiorRunOk(); @@ -560,7 +560,7 @@ void QmlEngine::gotoLocation(const Location &location) void QmlEngine::closeConnection() { - disconnect(watchersModel(),SIGNAL(layoutChanged()),this,SLOT(synchronizeWatchers())); + disconnect(watchModel(),SIGNAL(layoutChanged()),this,SLOT(synchronizeWatchers())); m_adapter.closeConnection(); } |
