Changeset 7864 in ntrip for trunk/BNC/src/bncrinex.cpp


Ignore:
Timestamp:
Apr 12, 2016, 10:32:18 AM (8 years ago)
Author:
stuerze
Message:

minor changes regarding skl file names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncrinex.cpp

    r7863 r7864  
    324324  QString sklExt = settings.value("rnxSkel").toString();
    325325  if (!sklExt.isEmpty()) {
     326    if (sklExt.indexOf("skl",0, Qt::CaseSensitive) != -1)  {
     327      ID4 = ID4.toLower();
     328    } else if (sklExt.indexOf("SKL",0, Qt::CaseSensitive) != -1) {
     329      ID4 = ID4.toUpper();
     330    }
    326331    _sklName = path + ID4 + distStr + "." + sklExt;
    327     if (sklExt.indexOf("skl",0, Qt::CaseSensitive) != -1)  {
    328       _sklName = _sklName.toLower();
    329     } else {
    330       _sklName = _sklName.toUpper();
    331     }
    332332  }
    333333
Note: See TracChangeset for help on using the changeset viewer.