Changeset 2647 in ntrip
- Timestamp:
- Nov 7, 2010, 4:19:39 PM (14 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnccaster.cpp
r2646 r2647 129 129 //////////////////////////////////////////////////////////////////////////// 130 130 bncCaster::~bncCaster() { 131 132 QMutexLocker locker(&_mutex); 133 131 134 QListIterator<bncGetThread*> it(_threads); 132 135 while(it.hasNext()){ -
trunk/BNC/bncgetthread.cpp
r2527 r2647 486 486 bool firstObs = (obs == _decoder->_obsList.first()); 487 487 obs->_status = t_obs::posted; 488 emit newObs(_staID, firstObs, obs); 488 if (!_isToBeDeleted) { 489 emit newObs(_staID, firstObs, obs); 490 } 489 491 } 490 492 _decoder->_obsList.clear();
Note:
See TracChangeset
for help on using the changeset viewer.