Changeset 3663 in ntrip


Ignore:
Timestamp:
Feb 3, 2012, 6:20:04 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/rnxnavfile.cpp

    r3662 r3663  
    119119    else {
    120120      if (glonass()) {
    121         prn = 'R' + QString("%1").arg(hlp.at(0).toInt(), 2, QChar('0'));
     121        prn = QString("R%1").arg(hlp.at(0).toInt(), 2, QChar('0'));
    122122      }
    123123      else {
    124         prn = 'G' + QString("%1").arg(hlp.at(0).toInt(), 2, QChar('0'));
     124        prn = QString("G%1").arg(hlp.at(0).toInt(), 2, QChar('0'));
    125125      }
    126126    }
Note: See TracChangeset for help on using the changeset viewer.