Changeset 698 in ntrip
- Timestamp:
- Feb 22, 2008, 10:29:59 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncrinex.cpp
r689 r698 101 101 while (it.hasNext()) { 102 102 delete it.next(); 103 } 104 QSettings settings; 105 if ((_rinexVers == 3) && ( Qt::CheckState(settings.value("rnxAppend").toInt()) != Qt::Checked) ) { 106 _out << "END OF FILE" << endl; 103 107 } 104 108 _out.close(); … … 657 661 void bncRinex::closeFile() { 658 662 QMutexLocker locker(&_mutex); 663 if (_rinexVers == 3) { 664 _out << "END OF FILE" << endl; 665 } 659 666 _out.close(); 660 667 if (!_rnxScriptName.isEmpty()) {
Note:
See TracChangeset
for help on using the changeset viewer.