Changeset 10546 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Sep 25, 2024, 5:08:35 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppSatObs.cpp
r10525 r10546 76 76 // Select pseudo-ranges and phase observations 77 77 // ------------------------------------------- 78 QStringList priorList = _signalPriorities.split(" ", Q t::SkipEmptyParts);78 QStringList priorList = _signalPriorities.split(" ", QString::SkipEmptyParts); 79 79 string preferredAttrib; 80 80 for (unsigned iFreq = 1; iFreq < t_frequency::max; iFreq++) { … … 92 92 for (int ii = 0; ii < priorList.size(); ii++) { 93 93 if (priorList[ii].indexOf(":") != -1) { 94 hlp = priorList[ii].split(":", Q t::SkipEmptyParts);94 hlp = priorList[ii].split(":", QString::SkipEmptyParts); 95 95 if (hlp.size() == 2 && hlp[0].length() == 1 && hlp[0][0] == frqSys) { 96 hlp = hlp[1].split("&", Q t::SkipEmptyParts);96 hlp = hlp[1].split("&", QString::SkipEmptyParts); 97 97 } 98 98 if (hlp.size() == 2 && hlp[0].indexOf(frqNum) != -1) {
Note:
See TracChangeset
for help on using the changeset viewer.