forked from qt-creator/qt-creator
Debugger: Remove more unused WatchData members
Change-Id: I95d2f533e1dcaec70aaa08181246f32066b8fdb1 Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -131,28 +131,10 @@ WatchData::WatchData() :
|
||||
wantsChildren(false),
|
||||
valueEnabled(true),
|
||||
valueEditable(true),
|
||||
sortId(0),
|
||||
source(0)
|
||||
sortId(0)
|
||||
{
|
||||
}
|
||||
|
||||
bool WatchData::isEqual(const WatchData &other) const
|
||||
{
|
||||
return iname == other.iname
|
||||
&& exp == other.exp
|
||||
&& name == other.name
|
||||
&& value == other.value
|
||||
&& editvalue == other.editvalue
|
||||
&& type == other.type
|
||||
&& displayedType == other.displayedType
|
||||
&& address == other.address
|
||||
&& size == other.size
|
||||
&& elided == other.elided
|
||||
&& wantsChildren == other.wantsChildren
|
||||
&& valueEnabled == other.valueEnabled
|
||||
&& valueEditable == other.valueEditable;
|
||||
}
|
||||
|
||||
bool WatchData::isAncestorOf(const QByteArray &childIName) const
|
||||
{
|
||||
if (iname.size() >= childIName.size())
|
||||
|
||||
Reference in New Issue
Block a user