Changeset 6675 in ntrip
- Timestamp:
- Mar 16, 2015, 4:45:33 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/rnxobsfile.cpp
r6588 r6675 1217 1217 1218 1218 bncSettings settings; 1219 QStringList priorList = settings.value("rnxV2Priority").toString().split(" ", QString::SkipEmptyParts); 1219 1220 QStringList priorList; 1221 QString reqcAction = settings.value("reqcAction").toString(); 1222 1223 // Priorities in Edit/Concatenate (post processing) mode 1224 // --------------------------------------------------- 1225 if (reqcAction == "Edit/Concatenate") { 1226 priorList = settings.value("reqcV2Priority").toString().split(" ", QString::SkipEmptyParts); 1227 } 1228 1229 // Priorities in real-time mode 1230 // ---------------------------- 1231 else { 1232 priorList = settings.value("rnxV2Priority").toString().split(" ", QString::SkipEmptyParts); 1233 } 1234 1220 1235 if (priorList.empty()) { 1221 1236 priorList << "CWPX_?";
Note:
See TracChangeset
for help on using the changeset viewer.