Changeset 10525 in ntrip for trunk/BNC/src/rinex/rnxobsfile.cpp


Ignore:
Timestamp:
Aug 19, 2024, 4:15:53 PM (3 months ago)
Author:
stuerze
Message:

replacement of obsolete qt-class members

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/rnxobsfile.cpp

    r9963 r10525  
    505505    for (int iType = 0; iType < useObsTypes->size(); iType++) {
    506506      if (useObsTypes->at(iType).indexOf(":") != -1) {
    507         QStringList hlp = useObsTypes->at(iType).split(":", QString::SkipEmptyParts);
     507        QStringList hlp = useObsTypes->at(iType).split(":", Qt::SkipEmptyParts);
    508508        if (hlp.size() == 2 && hlp[0].length() == 1) {
    509509          if (_version >= 3.0) {
     
    551551    else {
    552552      foreach (const QString &str, *phaseShifts) {
    553         QStringList hlp  = str.split("_", QString::SkipEmptyParts);
    554         QStringList hlp1 = hlp.last().split(":", QString::SkipEmptyParts);
     553        QStringList hlp  = str.split("_", Qt::SkipEmptyParts);
     554        QStringList hlp1 = hlp.last().split(":", Qt::SkipEmptyParts);
    555555        QString type = hlp.first();
    556556        double shift = hlp1.first().toDouble();
     
    577577    else {
    578578      foreach (const QString &str, *gloBiases) {
    579         QStringList hlp = str.split(":", QString::SkipEmptyParts);
     579        QStringList hlp = str.split(":", Qt::SkipEmptyParts);
    580580        QString type = hlp.first();;
    581581        double  value = hlp.last().toDouble();
     
    590590    else {
    591591      foreach (const QString &str, *gloSlots) {
    592         QStringList hlp = str.split(":", QString::SkipEmptyParts);
     592        QStringList hlp = str.split(":", Qt::SkipEmptyParts);
    593593        QString sat = hlp.first();
    594594        int    slot = hlp.last().toInt();
     
    631631      }
    632632      else if (it.key() == "RUN BY DATE") {
    633           runByDate = it.value().split("\\n", QString::SkipEmptyParts);
     633          runByDate = it.value().split("\\n", Qt::SkipEmptyParts);
    634634      }
    635635      else if ((it.key().indexOf("COMMENT")) != -1) {
    636         newComments += it.value().split("\\n", QString::SkipEmptyParts);
     636        newComments += it.value().split("\\n", Qt::SkipEmptyParts);
    637637      }
    638638    }
     
    14091409    const t_rnxSat& rnxSat = epo->rnxSat[iSat];
    14101410    if (iSat > 0 && iSat % 12 == 0) {
    1411       *stream << endl << QString().leftJustified(32);
     1411      *stream << '\n' << QString().leftJustified(32);
    14121412    }
    14131413    *stream << rnxSat.prn.toString().c_str();
    14141414  }
    1415   *stream << endl;
     1415  *stream << '\n';
    14161416
    14171417  for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) {
     
    14201420    for (int iTypeV2 = 0; iTypeV2 < header.nTypes(sys); iTypeV2++) {
    14211421      if (iTypeV2 > 0 && iTypeV2 % 5 == 0) {
    1422         *stream << endl;
     1422        *stream << '\n';
    14231423      }
    14241424      QString typeV2 = header.obsType(sys, iTypeV2);
     
    14281428      for (int ii = 0; ii < preferredAttribList.size(); ii++) {
    14291429        if (preferredAttribList[ii].indexOf("&") != -1) {
    1430           QStringList hlp = preferredAttribList[ii].split("&", QString::SkipEmptyParts);
     1430          QStringList hlp = preferredAttribList[ii].split("&", Qt::SkipEmptyParts);
    14311431          if (hlp.size() == 2 && hlp[0].contains(typeV2[1])) {
    14321432            preferredAttrib = hlp[1];
     
    14761476      }
    14771477    }
    1478     *stream << endl;
     1478    *stream << '\n';
    14791479  }
    14801480}
     
    15591559        }
    15601560      }
    1561       *stream << endl;
     1561      *stream << '\n';
    15621562    }
    15631563  }
     
    16771677  // ---------------------------------------------------
    16781678  if (reqcAction == "Edit/Concatenate") {
    1679     priorList = settings.value("reqcV2Priority").toString().split(" ", QString::SkipEmptyParts);
     1679    priorList = settings.value("reqcV2Priority").toString().split(" ", Qt::SkipEmptyParts);
    16801680  }
    16811681
     
    16831683  // ----------------------------
    16841684  else {
    1685     priorList = settings.value("rnxV2Priority").toString().split(" ", QString::SkipEmptyParts);
     1685    priorList = settings.value("rnxV2Priority").toString().split(" ", Qt::SkipEmptyParts);
    16861686  }
    16871687
     
    16891689  for (int ii = 0; ii < priorList.size(); ii++) {
    16901690    if (priorList[ii].indexOf(":") != -1) {
    1691       QStringList hlp = priorList[ii].split(":", QString::SkipEmptyParts);
     1691      QStringList hlp = priorList[ii].split(":", Qt::SkipEmptyParts);
    16921692      if (hlp.size() == 2 && hlp[0].length() == 1 && hlp[0][0] == sys) {
    16931693        result.append(hlp[1]);
Note: See TracChangeset for help on using the changeset viewer.