aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerstreamops.cpp
diff options
context:
space:
mode:
authorhjk <qthjk@ovi.com>2012-09-21 16:46:06 +0200
committerhjk <qthjk@ovi.com>2012-09-21 17:48:31 +0200
commitaa8602e1e8451b38463a41bab53de1078a40e60f (patch)
tree1c1106e9f69f9ddb9e3cdcecf3009533caf9ff29 /src/plugins/debugger/debuggerstreamops.cpp
parente511107d946f21d229b1cbb5ef68c2719600d19e (diff)
debugger: fix color for changed items in locals and expressions view
Change-Id: I93905f8e97e2738590fecf41ac7294c2f6872335 Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/debugger/debuggerstreamops.cpp')
-rw-r--r--src/plugins/debugger/debuggerstreamops.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggerstreamops.cpp b/src/plugins/debugger/debuggerstreamops.cpp
index 98b48e3995..6dbaf10de5 100644
--- a/src/plugins/debugger/debuggerstreamops.cpp
+++ b/src/plugins/debugger/debuggerstreamops.cpp
@@ -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;
}