- Timestamp:
- Sep 24, 2006, 5:09:51 PM (18 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnccaster.cpp
r187 r188 71 71 bncGetThread* thread = it.next(); 72 72 thread->terminate(); 73 thread->wait( 1000);73 thread->wait(); 74 74 delete thread; 75 75 } -
trunk/BNC/bncrinex.cpp
r183 r188 215 215 " hh mm ss.zzz0000").toAscii().data(); 216 216 _out << " TIME OF FIRST OBS" << endl; 217 QString hlp = QString(" GENERATED FROMSTREAM %1").arg(_mountPoint)217 QString hlp = QString("STREAM %1").arg(_mountPoint) 218 218 .leftJustified(60, ' ', true); 219 219 _out << hlp.toAscii().data() << "COMMENT" << endl; … … 258 258 " hh mm ss.zzz0000").toAscii().data(); 259 259 _out << " " << "TIME OF FIRST OBS" << endl; 260 hlp = QString(" GENERATED FROMSTREAM %1").arg(_mountPoint)260 hlp = QString("STREAM %1").arg(_mountPoint) 261 261 .leftJustified(60, ' ', true); 262 262 _out << hlp.toAscii().data() << "COMMENT" << endl; -
trunk/BNC/bnctableitem.cpp
r185 r188 41 41 } 42 42 else if (_bytesRead < 1e6) { 43 setText(QString("%1 kb").arg(_bytesRead/1.e3 ));43 setText(QString("%1 kb").arg(_bytesRead/1.e3, 5)); 44 44 } 45 45 else { 46 setText(QString("%1 Mb").arg(_bytesRead/1.e6 ));46 setText(QString("%1 Mb").arg(_bytesRead/1.e6, 5)); 47 47 } 48 48 } -
trunk/BNC/bncwindow.cpp
r184 r188 406 406 if (iRet == QMessageBox::Yes) { 407 407 _bncCaster->terminate(); 408 _bncCaster->wait( 1000);408 _bncCaster->wait(); 409 409 delete _bncCaster; 410 410 _bncCaster = 0;
Note:
See TracChangeset
for help on using the changeset viewer.