Changeset 1526 in ntrip
- Timestamp:
- Jan 21, 2009, 1:01:07 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnc.pro
r1523 r1526 2 2 # Switch to debug configuration 3 3 # ----------------------------- 4 CONFIG += debug5 CONFIG -= release4 CONFIG -= debug 5 CONFIG += release 6 6 7 7 DEFINES += NO_RTCM3_MAIN -
trunk/BNC/bncgetthread.cpp
r1525 r1526 85 85 if (!_rnx) { 86 86 cerr << "no RINEX path specified" << endl; 87 delete this;87 ::exit(1); 88 88 } 89 89 } … … 402 402 403 403 if (irc == fatal) { 404 QThread::exit(1); 404 405 this->deleteLater(); 405 406 return; … … 419 420 // ------------------ 420 421 while (true) { 422 if (_isToBeDeleted) { 423 QThread::exit(0); 424 this->deleteLater(); 425 return; 426 } 421 427 try { 422 428 if (_query && _query->status() != bncNetQuery::running) {
Note:
See TracChangeset
for help on using the changeset viewer.