forked from qt-creator/qt-creator
Debugger: Remove WatchUpdateFlags
Only needed in the non-Python days. CDB didn't use it to start with. Change-Id: Ia609218cc1a694f797e278c4d99ead68e6212938 Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -972,13 +972,11 @@ static inline bool isWatchIName(const QByteArray &iname)
|
||||
return iname.startsWith("watch");
|
||||
}
|
||||
|
||||
void CdbEngine::updateWatchData(const WatchData &dataIn,
|
||||
const WatchUpdateFlags & flags)
|
||||
void CdbEngine::updateWatchData(const WatchData &dataIn)
|
||||
{
|
||||
if (debug || debugLocals || debugWatches)
|
||||
qDebug("CdbEngine::updateWatchData() %dms accessible=%d %s incr=%d: %s",
|
||||
qDebug("CdbEngine::updateWatchData() %dms accessible=%d %s: %s",
|
||||
elapsedLogTime(), m_accessible, stateName(state()),
|
||||
flags.tryIncremental,
|
||||
qPrintable(dataIn.toString()));
|
||||
|
||||
if (!m_accessible) // Add watch data while running?
|
||||
|
||||
Reference in New Issue
Block a user