Changeset 4484 in ntrip for trunk/BNC/src/rinex/rnxobsfile.cpp


Ignore:
Timestamp:
Aug 3, 2012, 8:31:04 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/rnxobsfile.cpp

    r4481 r4484  
    302302  *stream << obsTypesStrings().join("");
    303303
    304   *stream << QString("%1")
    305     .arg(_interval, 10, 'f', 3)
    306     .leftJustified(60)
    307            << "INTERVAL\n";
     304  if (_interval > 0) {
     305    *stream << QString("%1")
     306      .arg(_interval, 10, 'f', 3)
     307      .leftJustified(60)
     308             << "INTERVAL\n";
     309  }
    308310
    309311  unsigned year, month, day, hour, min;
Note: See TracChangeset for help on using the changeset viewer.