aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerstreamops.cpp
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2011-06-24 16:25:30 +0200
committerhjk <qthjk@ovi.com>2011-06-27 09:14:25 +0200
commitc04128675385eeb3c358691952db05311478751a (patch)
tree65b29e014333c94d238bac53018e80055156392f /src/plugins/debugger/debuggerstreamops.cpp
parentc4713f5ab229dcbb55eeabfc3dfb4cf3ba9d392a (diff)
debugger: split BreakpointIndex into plugin and debugger specific part
Change-Id: I21d10cf42eb039c74475e106537b6e107d155196 Reviewed-on: http://codereview.qt.nokia.com/745 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, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerstreamops.cpp b/src/plugins/debugger/debuggerstreamops.cpp
index f7451c0a32..fb888d2080 100644
--- a/src/plugins/debugger/debuggerstreamops.cpp
+++ b/src/plugins/debugger/debuggerstreamops.cpp
@@ -165,7 +165,7 @@ QDataStream &operator>>(QDataStream &stream, BreakpointResponse &s)
{
int majorPart;
stream >> majorPart;
- s.id = BreakpointId(majorPart);
+ s.id = BreakpointResponseId(majorPart);
stream >> s.condition;
stream >> s.ignoreCount;
stream >> s.fileName;