forked from qt-creator/qt-creator
debugger: decode addrstep properly when it appears in hex
Change-Id: I52f85cbd3fa8eb4a1454e3b5265cc7400306eb7a Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -862,7 +862,7 @@ void parseWatchData(const QSet<QByteArray> &expandedINames,
|
||||
|
||||
bool ok = false;
|
||||
qulonglong addressBase = item.findChild("addrbase").data().toULongLong(&ok, 0);
|
||||
qulonglong addressStep = item.findChild("addrstep").data().toULongLong();
|
||||
qulonglong addressStep = item.findChild("addrstep").data().toULongLong(&ok, 0);
|
||||
|
||||
// Try not to repeat data too often.
|
||||
WatchData childtemplate;
|
||||
|
||||
Reference in New Issue
Block a user