Browse Source

Fixed minor compile error

QGC4.4
LM 13 years ago
parent
commit
9afab6b558
  1. 4
      src/LogCompressor.cc

4
src/LogCompressor.cc

@ -83,7 +83,7 @@ void LogCompressor::run() @@ -83,7 +83,7 @@ void LogCompressor::run()
// Now update each key with its index in the output string. These are
// all offset by one to account for the first field: timestamp_ms.
QMap<QString, int>::iterator i = messageMap.constBegin();
QMap<QString, int>::iterator i = messageMap.begin();
int j;
for (i = messageMap.begin(), j = 1; i != messageMap.end(); ++i, ++j) {
i.value() = j;
@ -174,4 +174,4 @@ bool LogCompressor::isFinished() @@ -174,4 +174,4 @@ bool LogCompressor::isFinished()
int LogCompressor::getCurrentLine()
{
return currentDataLine;
}
}

Loading…
Cancel
Save