aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerstreamops.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-04-19 15:42:14 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-04-19 15:43:53 +0200
commit774fa4941284f8b9257f9659c8d77e4c10545c4e (patch)
treebf909edb8b204afed235dcaa2c2d0c8deafa3d7a /src/plugins/debugger/debuggerstreamops.cpp
parentcca52b6d309a66509e36a831d75b0c6afaa3dccd (diff)
Fix more krazy warnings.
Diffstat (limited to 'src/plugins/debugger/debuggerstreamops.cpp')
-rw-r--r--src/plugins/debugger/debuggerstreamops.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/debugger/debuggerstreamops.cpp b/src/plugins/debugger/debuggerstreamops.cpp
index d691189cdb..d8f585c361 100644
--- a/src/plugins/debugger/debuggerstreamops.cpp
+++ b/src/plugins/debugger/debuggerstreamops.cpp
@@ -83,7 +83,7 @@ QDataStream &operator>>(QDataStream &stream, Threads &threads)
quint64 count;
stream >> count;
threads.clear();
- for (quint64 i = 0; i < count; i++)
+ for (quint64 i = 0; i < count; ++i)
{
ThreadData d;
stream >> d;
@@ -136,7 +136,7 @@ QDataStream &operator>>(QDataStream &stream, StackFrames &frames)
quint64 count;
stream >> count;
frames.clear();
- for (quint64 i = 0; i < count; i++)
+ for (quint64 i = 0; i < count; ++i)
{
StackFrame s;
stream >> s;
@@ -284,7 +284,7 @@ QDataStream &operator>>(QDataStream& stream, DisassemblerLine &o)
QDataStream &operator<<(QDataStream& stream, const DisassemblerLines &o)
{
stream << quint64(o.size());
- for (int i = 0; i < o.size(); i++)
+ for (int i = 0; i < o.size(); ++i)
{
stream << o.at(i);
}