debugger: fix color for changed items in locals and expressions view

Change-Id: I93905f8e97e2738590fecf41ac7294c2f6872335
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-09-21 16:46:06 +02:00
parent e511107d94
commit aa8602e1e8
6 changed files with 21 additions and 28 deletions

View File

@@ -232,7 +232,6 @@ QDataStream &operator<<(QDataStream &stream, const WatchData &wd)
stream << wd.valueEditable;
stream << wd.error;
stream << wd.state;
stream << wd.changed;
return stream;
}
@@ -257,7 +256,6 @@ QDataStream &operator>>(QDataStream &stream, WatchData &wd)
stream >> wd.valueEditable;
stream >> wd.error;
stream >> wd.state;
stream >> wd.changed;
return stream;
}