Changeset 7665 in ntrip for trunk/BNC/src/bncrinex.cpp


Ignore:
Timestamp:
Jan 11, 2016, 2:01:13 PM (8 years ago)
Author:
stuerze
Message:

minor changes ragarding rinex obs file writing with incomplete skl file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncrinex.cpp

    r7505 r7665  
    163163    if (query->status() == bncNetQuery::finished &&
    164164        outData.contains("END OF HEADER")) {
    165       irc = success;
    166165      QTextStream in(outData);
    167       _sklHeader.read(&in);
     166      irc = _sklHeader.read(&in);
    168167    }
    169168
     
    184183  QFile skl(_sklName);
    185184  if ( skl.exists() && skl.open(QIODevice::ReadOnly) ) {
    186     readDone = true;
    187185    QTextStream in(&skl);
    188     _sklHeader.read(&in);
     186    if (_sklHeader.read(&in) == success) {
     187      readDone = true;
     188    }
    189189  }
    190190
Note: See TracChangeset for help on using the changeset viewer.