Changeset 10355 in ntrip
- Timestamp:
- Feb 26, 2024, 12:02:11 PM (9 months ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnccaster.cpp
r10238 r10355 145 145 146 146 QListIterator<bncGetThread*> it(_threads); 147 147 148 while(it.hasNext()){ 148 149 bncGetThread* thread = it.next(); … … 152 153 thread->terminate(); 153 154 } 155 154 156 delete _out; 155 157 delete _outFile; … … 297 299 //////////////////////////////////////////////////////////////////////////// 298 300 void bncCaster::slotGetThreadFinished(QByteArray staID) { 299 QMutexLocker locker(&_mutex);301 //QMutexLocker locker(&_mutex); 300 302 301 303 QListIterator<bncGetThread*> it(_threads); … … 306 308 } 307 309 } 308 309 310 _staIDs.removeAll(staID); 310 311 emit( newMessage( … … 314 315 emit getThreadsFinished(); 315 316 } 317 316 318 } 317 319 -
trunk/BNC/src/bncwindow.cpp
r10327 r10355 2265 2265 delete _casterEph; _casterEph = 0; 2266 2266 _runningRealTime = false; 2267 enableStartStop(); 2267 2268 } 2268 2269 … … 2327 2328 connect(_caster, SIGNAL(getThreadsFinished()), this, SLOT(slotGetThreadsFinished())); 2328 2329 2329 connect 2330 connect(_caster, SIGNAL(mountPointsRead(QList<bncGetThread*>)), this, SLOT(slotMountPointsRead(QList<bncGetThread*>))); 2330 2331 2331 2332 BNC_CORE->slotMessage("========== Start BNC v" BNCVERSION " (" BNC_OS ") ==========", true); … … 3222 3223 //////////////////////////////////////////////////////////////////////////// 3223 3224 void bncWindow::enableStartStop() { 3225 3224 3226 if ( running() ) { 3225 3227 _actStart->setEnabled(false);
Note:
See TracChangeset
for help on using the changeset viewer.