diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-05-10 15:19:38 +0200 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-05-10 15:21:41 +0200 |
commit | ddf4b613f3ebf3799f23f51a68c00649bfb84e95 (patch) | |
tree | c7fccf8ef1b66b8aef38283b333c8d731ef66cb5 /src/plugins/debugger/gdb/symbian.cpp | |
parent | bda50da7cd3bcf7ae1ea7839325bc361ed3a145d (diff) | |
download | qt-creator-ddf4b613f3ebf3799f23f51a68c00649bfb84e95.tar.gz |
Krazy fixes (spelling, single char strings, char constants).
Diffstat (limited to 'src/plugins/debugger/gdb/symbian.cpp')
-rw-r--r-- | src/plugins/debugger/gdb/symbian.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/gdb/symbian.cpp b/src/plugins/debugger/gdb/symbian.cpp index 94377bd4a2..b758596f37 100644 --- a/src/plugins/debugger/gdb/symbian.cpp +++ b/src/plugins/debugger/gdb/symbian.cpp @@ -506,7 +506,7 @@ void Snapshot::syncThreads(ThreadsHandler *handler) const // Take advantage of direct access to cached register values. Threads threads; const unsigned count = threadInfo.size(); - for (unsigned t = 0; t < count; t++) { + for (unsigned t = 0; t < count; ++t) { ThreadData thread(t + 1); // Fake gdb thread ids starting from 1 thread.targetId = QString::number(threadInfo.at(t).id); thread.state = threadInfo.at(t).state; |