- Timestamp:
- Apr 21, 2016, 11:09:51 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncrinex.cpp
r7864 r7878 306 306 307 307 QString ID4 = _statID.left(4); 308 ID4 = ID4.toUpper(); 308 309 309 310 // Check name conflict … … 323 324 324 325 QString sklExt = settings.value("rnxSkel").toString(); 326 QString sklPre; 325 327 if (!sklExt.isEmpty()) { 326 328 if (sklExt.indexOf("skl",0, Qt::CaseSensitive) != -1) { 327 ID4= ID4.toLower();329 sklPre = ID4.toLower(); 328 330 } else if (sklExt.indexOf("SKL",0, Qt::CaseSensitive) != -1) { 329 ID4= ID4.toUpper();330 } 331 _sklName = path + ID4+ distStr + "." + sklExt;331 sklPre = ID4.toUpper(); 332 } 333 _sklName = path + sklPre + distStr + "." + sklExt; 332 334 } 333 335
Note:
See TracChangeset
for help on using the changeset viewer.