Changeset 188 in ntrip


Ignore:
Timestamp:
Sep 24, 2006, 5:09:51 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnccaster.cpp

    r187 r188  
    7171    bncGetThread* thread = it.next();
    7272    thread->terminate();
    73     thread->wait(1000);
     73    thread->wait();
    7474    delete thread;
    7575  }
  • trunk/BNC/bncrinex.cpp

    r183 r188  
    215215                                "    hh    mm   ss.zzz0000").toAscii().data();
    216216        _out << "                 TIME OF FIRST OBS"    << endl;
    217         QString hlp = QString("GENERATED FROM STREAM %1").arg(_mountPoint)
     217        QString hlp = QString("STREAM %1").arg(_mountPoint)
    218218                             .leftJustified(60, ' ', true);
    219219        _out << hlp.toAscii().data() << "COMMENT" << endl;
     
    258258                                "    hh    mm   ss.zzz0000").toAscii().data();
    259259    _out << "                 "                                      << "TIME OF FIRST OBS"    << endl;
    260     hlp = QString("GENERATED FROM STREAM %1").arg(_mountPoint)
     260    hlp = QString("STREAM %1").arg(_mountPoint)
    261261                                             .leftJustified(60, ' ', true);
    262262    _out << hlp.toAscii().data() << "COMMENT" << endl;
  • trunk/BNC/bnctableitem.cpp

    r185 r188  
    4141  }
    4242  else if (_bytesRead < 1e6) {
    43     setText(QString("%1 kb").arg(_bytesRead/1.e3));
     43    setText(QString("%1 kb").arg(_bytesRead/1.e3, 5));
    4444  }
    4545  else {
    46     setText(QString("%1 Mb").arg(_bytesRead/1.e6));
     46    setText(QString("%1 Mb").arg(_bytesRead/1.e6, 5));
    4747  }
    4848}
  • trunk/BNC/bncwindow.cpp

    r184 r188  
    406406  if (iRet == QMessageBox::Yes) {
    407407    _bncCaster->terminate();
    408     _bncCaster->wait(1000);
     408    _bncCaster->wait();
    409409    delete _bncCaster;
    410410    _bncCaster = 0;
Note: See TracChangeset for help on using the changeset viewer.