diff options
author | hjk <qthjk@ovi.com> | 2012-05-18 02:28:41 +0200 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-05-24 14:33:34 +0200 |
commit | e11a3a7697e7b432ac061277694885cf3724f25c (patch) | |
tree | 46a3140ed47b072782541d005d0edbdf1259a554 /src/plugins/debugger/lldb | |
parent | c14c1248ed01f5e16975dc1082b5ce4e58052f8b (diff) | |
download | qt-creator-e11a3a7697e7b432ac061277694885cf3724f25c.tar.gz |
debugger: rework WatchModel
It's one model for all locals, watch, return, tooltip and inspector
data. This allows more streamlined code paths and better isolation
of the model data from the WatchHandler. WatchItems are now registered
in a hash indexed by iname, so inames can be used as the primary
handle to watch data in the WatchHandler interface.
Change-Id: Idac0a808b5d785307496d1de4198a1f2e9ce3880
Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
Diffstat (limited to 'src/plugins/debugger/lldb')
-rw-r--r-- | src/plugins/debugger/lldb/ipcenginehost.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/debugger/lldb/ipcenginehost.cpp b/src/plugins/debugger/lldb/ipcenginehost.cpp index 73a01839de..7586920ba4 100644 --- a/src/plugins/debugger/lldb/ipcenginehost.cpp +++ b/src/plugins/debugger/lldb/ipcenginehost.cpp @@ -496,9 +496,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload) WatchHandler *wh = watchHandler(); if (!wh) break; - wh->beginCycle(fullCycle); - wh->insertBulkData(wd); - wh->endCycle(); + wh->insertData(wd); } break; case IPCEngineGuest::NotifyAddBreakpointOk: |