Changeset 7665 in ntrip for trunk/BNC/src/bncrinex.cpp
- Timestamp:
- Jan 11, 2016, 2:01:13 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncrinex.cpp
r7505 r7665 163 163 if (query->status() == bncNetQuery::finished && 164 164 outData.contains("END OF HEADER")) { 165 irc = success;166 165 QTextStream in(outData); 167 _sklHeader.read(&in);166 irc = _sklHeader.read(&in); 168 167 } 169 168 … … 184 183 QFile skl(_sklName); 185 184 if ( skl.exists() && skl.open(QIODevice::ReadOnly) ) { 186 readDone = true;187 185 QTextStream in(&skl); 188 _sklHeader.read(&in); 186 if (_sklHeader.read(&in) == success) { 187 readDone = true; 188 } 189 189 } 190 190
Note:
See TracChangeset
for help on using the changeset viewer.