Changeset 2069 in ntrip
- Timestamp:
- Dec 1, 2009, 4:08:37 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpppclient.cpp
r2068 r2069 183 183 void bncPPPclient::slotNewCorrections(QList<QString> corrList) { 184 184 QMutexLocker locker(&_mutex); 185 186 if (corrList.size() == 0) { 187 return; 188 } 189 190 // Remove All Corrections 191 // ---------------------- 192 QMapIterator<QString, t_corr*> ic(_corr); 193 while (ic.hasNext()) { 194 ic.next(); 195 delete ic.value(); 196 } 197 _corr.clear(); 198 185 199 QListIterator<QString> it(corrList); 186 200 while (it.hasNext()) {
Note:
See TracChangeset
for help on using the changeset viewer.