Changeset 1560 in ntrip
- Timestamp:
- Feb 2, 2009, 3:44:56 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnccaster.cpp
r1556 r1560 250 250 void bncCaster::slotGetThreadFinished(QByteArray staID) { 251 251 QMutexLocker locker(&_mutex); 252 253 QListIterator<bncGetThread*> it(_threads); 254 while (it.hasNext()) { 255 bncGetThread* thread = it.next(); 256 if (thread->staID() == staID) { 257 _threads.removeOne(thread); 258 } 259 } 260 252 261 _staIDs.removeAll(staID); 253 262 emit( newMessage( -
trunk/BNC/bncwindow.cpp
r1556 r1560 926 926 void bncWindow::slotGetThreadsFinished() { 927 927 ((bncApp*)qApp)->slotMessage("All Get Threads Terminated", true); 928 if (!_actStop->isEnabled()) {929 930 }928 delete _caster; _caster = 0; 929 _actGetData->setEnabled(true); 930 _actStop->setEnabled(false); 931 931 } 932 932
Note:
See TracChangeset
for help on using the changeset viewer.