Browse Source

Fixed another logging bug

QGC4.4
Lorenz Meier 13 years ago
parent
commit
680da7562f
  1. 4
      src/LogCompressor.cc

4
src/LogCompressor.cc

@ -109,9 +109,7 @@ void LogCompressor::run()
emit logProcessingStatusChanged(tr("Log compressor: Dataset contains dimension: ") + headerLine); emit logProcessingStatusChanged(tr("Log compressor: Dataset contains dimension: ") + headerLine);
// Reset our position in the input file before we start the main processing loop. // Reset our position in the input file before we start the main processing loop.
infile.reset(); in.seek(0);
in.reset();
in.resetStatus();
// Template list stores a list for populating with data as it's parsed from messages. // Template list stores a list for populating with data as it's parsed from messages.
QStringList templateList; QStringList templateList;

Loading…
Cancel
Save