forked from qt-creator/qt-creator
Debugger: Remove most remaining occurrences of WatchData
... in WatchHandler and DebuggerEngine interface. Adjust using code. Change-Id: I6371f3e96ba46a783e23a5767cdde24a10d3fce7 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com> Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -218,9 +218,9 @@ ToolTipWatchItem::ToolTipWatchItem(WatchItem *item)
|
||||
name = item->displayName();
|
||||
value = item->displayValue();
|
||||
type = item->displayType();
|
||||
iname = item->d.iname;
|
||||
iname = item->iname;
|
||||
valueColor = item->valueColor();
|
||||
expandable = item->d.hasChildren;
|
||||
expandable = item->hasChildren();
|
||||
expression = item->expression();
|
||||
foreach (TreeItem *child, item->children())
|
||||
appendChild(new ToolTipWatchItem(static_cast<WatchItem *>(child)));
|
||||
|
||||
Reference in New Issue
Block a user