Changeset 10525 in ntrip for trunk/BNC/src/rinex/rnxnavfile.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/rnxnavfile.cpp

    r10318 r10525  
    158158    }
    159159
    160     QStringList hlp = line.split(QRegExp("\\s+"), QString::SkipEmptyParts);
     160    QStringList hlp = line.split(QRegExp("\\s+"), Qt::SkipEmptyParts);
    161161    QString firstStr = hlp.at(0);
    162162    QString prn;
     
    243243      eph = new t_ephGPS(version(), lines);
    244244    }
    245    
     245
    246246    if (version() >= 4.0) {
    247247      if (eph->setNavType(navTypeStr) != success) {
     
    250250      }
    251251    }
    252    
     252
    253253    if (eph) {
    254254      _ephs.push_back(eph);
     
    317317      }
    318318      else if (it.key() == "RUN BY DATE") {
    319           runByDate = it.value().split("\\n", QString::SkipEmptyParts);
     319          runByDate = it.value().split("\\n", Qt::SkipEmptyParts);
    320320      }
    321321      else if (it.key() == "COMMENT") {
    322         comments = it.value().split("\\n", QString::SkipEmptyParts);
     322        comments = it.value().split("\\n", Qt::SkipEmptyParts);
    323323      }
    324324    }
Note: See TracChangeset for help on using the changeset viewer.