From 9afab6b5585f6caddd1aecedae8cf92711f65b75 Mon Sep 17 00:00:00 2001 From: LM Date: Fri, 27 Apr 2012 12:04:43 +0200 Subject: [PATCH] Fixed minor compile error --- src/LogCompressor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LogCompressor.cc b/src/LogCompressor.cc index e1b01a39c..5d41d08c8 100644 --- a/src/LogCompressor.cc +++ b/src/LogCompressor.cc @@ -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::iterator i = messageMap.constBegin(); + QMap::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() int LogCompressor::getCurrentLine() { return currentDataLine; -} \ No newline at end of file +} -- 2.22.0