Replace int WatchData::childCount by bool ...hasChildren in Debugger.

...making engine implementations easier.
Acked-by: hjk <qtc-committer@nokia.com>
This commit is contained in:
Friedemann Kleint
2009-06-22 11:35:08 +02:00
parent 75709964ab
commit bdfd71661c
9 changed files with 68 additions and 103 deletions

View File

@@ -795,7 +795,7 @@ void CdbDebugEngine::evaluateWatcher(WatchData *wd)
wd->setValue(errorMessage);
wd->setTypeUnneeded();
}
wd->setChildCount(0);
wd->setHasChildren(false);
}
void CdbDebugEngine::updateWatchData(const WatchData &incomplete)