forked from qt-creator/qt-creator
Debugger: Remove new watch window timer from public interface
Change-Id: Ic9d3df22d917e5644d6302a6af06aa8eadea8b5a Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -1500,7 +1500,7 @@ void CdbEngine::updateLocals(bool newFrame)
|
||||
|
||||
// Required arguments: frame
|
||||
str << blankSeparator << frameIndex;
|
||||
watchHandler()->updateRequested();
|
||||
watchHandler()->notifyUpdateStarted();
|
||||
postExtensionCommand("locals", arguments, 0,
|
||||
[this, newFrame](const CdbResponse &r) { handleLocals(r, newFrame); });
|
||||
}
|
||||
@@ -1860,7 +1860,7 @@ void CdbEngine::handleRegistersExt(const CdbResponse &response)
|
||||
void CdbEngine::handleLocals(const CdbResponse &response, bool newFrame)
|
||||
{
|
||||
if (response.success) {
|
||||
watchHandler()->updateFinished();
|
||||
watchHandler()->notifyUpdateFinished();
|
||||
if (boolSetting(VerboseLog))
|
||||
showMessage(QLatin1String("Locals: ") + QString::fromLatin1(response.extensionReply), LogDebug);
|
||||
WatchHandler *handler = watchHandler();
|
||||
|
||||
Reference in New Issue
Block a user