Changeset 5776 in ntrip for trunk/BNC/src/rinex/reqcanalyze.cpp


Ignore:
Timestamp:
Aug 4, 2014, 11:34:04 AM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5368 r5776  
    247247        if (obs.satSys == 'R') {
    248248          for (int ie = 0; ie < _ephs.size(); ie++) {
    249             if (_ephs[ie]->prn() == prn) {
     249            if (QString(_ephs[ie]->prn().toString().c_str()) == prn) {
    250250              ephGlo = dynamic_cast<t_ephGlo*>(_ephs[ie]);
    251251              break;
     
    536536          t_eph* eph = 0;
    537537          for (int ie = 0; ie < _ephs.size(); ie++) {
    538             if (_ephs[ie]->prn() == prn) {
     538            if (QString(_ephs[ie]->prn().toString().c_str()) == prn) {
    539539              eph = _ephs[ie];
    540540              break;
     
    746746    t_eph* eph = 0;
    747747    for (int ie = 0; ie < _ephs.size(); ie++) {
    748       if (_ephs[ie]->prn() == prn) {
     748      if (QString(_ephs[ie]->prn().toString().c_str()) == prn) {
    749749        eph = _ephs[ie];
    750750        break;
Note: See TracChangeset for help on using the changeset viewer.