Changeset 10525 in ntrip for trunk/BNC/src/rinex/rnxnavfile.cpp
- Timestamp:
- Aug 19, 2024, 4:15:53 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/rnxnavfile.cpp
r10318 r10525 158 158 } 159 159 160 QStringList hlp = line.split(QRegExp("\\s+"), Q String::SkipEmptyParts);160 QStringList hlp = line.split(QRegExp("\\s+"), Qt::SkipEmptyParts); 161 161 QString firstStr = hlp.at(0); 162 162 QString prn; … … 243 243 eph = new t_ephGPS(version(), lines); 244 244 } 245 245 246 246 if (version() >= 4.0) { 247 247 if (eph->setNavType(navTypeStr) != success) { … … 250 250 } 251 251 } 252 252 253 253 if (eph) { 254 254 _ephs.push_back(eph); … … 317 317 } 318 318 else if (it.key() == "RUN BY DATE") { 319 runByDate = it.value().split("\\n", Q String::SkipEmptyParts);319 runByDate = it.value().split("\\n", Qt::SkipEmptyParts); 320 320 } 321 321 else if (it.key() == "COMMENT") { 322 comments = it.value().split("\\n", Q String::SkipEmptyParts);322 comments = it.value().split("\\n", Qt::SkipEmptyParts); 323 323 } 324 324 }
Note:
See TracChangeset
for help on using the changeset viewer.