- Timestamp:
- Oct 3, 2012, 7:25:11 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/rnxobsfile.cpp
r4545 r4748 1089 1089 if (!same) { 1090 1090 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) 1094 1098 << strLst.join(""); 1095 1099 }
Note:
See TracChangeset
for help on using the changeset viewer.