forked from qt-creator/qt-creator
Debugger: Replace DebuggerDisplay enum by strings
Easier to coordinate between dumpers and watchhandler Change-Id: Ide191a5786dc04ef22c3e9c8b0bec39f8f8c0f1d Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -110,7 +110,6 @@ bool isIntOrFloatType(const QByteArray &type)
|
||||
WatchItem::WatchItem() :
|
||||
id(WatchItem::InvalidId),
|
||||
state(InitialState),
|
||||
editformat(),
|
||||
address(0),
|
||||
origaddr(0),
|
||||
size(0),
|
||||
@@ -401,7 +400,7 @@ void WatchItem::parseHelper(const GdbMi &input, bool maySort)
|
||||
setType(mi.data());
|
||||
|
||||
editvalue = input["editvalue"].data();
|
||||
editformat = DebuggerDisplay(input["editformat"].data());
|
||||
editformat = input["editformat"].data();
|
||||
editencoding = DebuggerEncoding(input["editencoding"].data());
|
||||
|
||||
mi = input["valueelided"];
|
||||
|
||||
Reference in New Issue
Block a user