Changeset 2779 in ntrip


Ignore:
Timestamp:
Dec 12, 2010, 6:12:36 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpppclient.cpp

    r2778 r2779  
    623623  }
    624624
     625  QMutableMapIterator<QString, t_satData*> iGal(_epoData->satDataGal);
     626  while (iGal.hasNext()) {
     627    iGal.next();
     628    QString    prn     = iGal.key();
     629    t_satData* satData = iGal.value();
     630
     631    if (cmpToT(satData) != success) {
     632      delete satData;
     633      iGal.remove();
     634      continue;
     635    }
     636  }
     637
    625638  // Filter Solution
    626639  // ---------------
Note: See TracChangeset for help on using the changeset viewer.