Changeset 4748 in ntrip


Ignore:
Timestamp:
Oct 3, 2012, 7:25:11 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r4545 r4748  
    10891089  if (!same) {
    10901090    QStringList strLst = _header.obsTypesStrings();
    1091     int numBlanks = _header._version < 3.0 ? 26 : 29;
    1092     *_stream << QString().leftJustified(numBlanks)
    1093              << QString("  4%1\n").arg(strLst.size(), 3)
     1091    if (_header._version < 3.0) {
     1092      *_stream << QString().leftJustified(26);
     1093    }
     1094    else {
     1095      *_stream << '>' << QString().leftJustified(28);
     1096    }
     1097    *_stream << QString("  4%1\n").arg(strLst.size(), 3)
    10941098             << strLst.join("");
    10951099  }
Note: See TracChangeset for help on using the changeset viewer.