Changeset 1154 in ntrip for trunk/BNC/bncapp.cpp


Ignore:
Timestamp:
Oct 7, 2008, 12:40:28 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncapp.cpp

    r1044 r1154  
    180180
    181181  if (_logStream) {
    182     *_logStream << QDateTime::currentDateTime().toUTC().toString("yy-MM-dd hh:mm:ss ").toAscii().data();
     182    *_logStream << currentDateAndTimeGPS().toString("yy-MM-dd hh:mm:ss ").toAscii().data();
    183183    *_logStream << msg.data() << endl;
    184184    _logStream->flush();
     
    276276  if (!_ephPath.isEmpty()) {
    277277
    278     QDateTime datTim = QDateTime::currentDateTime().toUTC();
     278    QDateTime datTim = currentDateAndTimeGPS();
    279279
    280280    QString ephFileNameGPS = _ephPath + "BRDC" +
     
    356356        *_ephStreamGPS << line;
    357357       
    358         QString hlp = QDateTime::currentDateTime().toUTC().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true);
     358        QString hlp = currentDateAndTimeGPS().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true);
    359359        *_ephStreamGPS << _pgmName.toAscii().data()
    360360                       << _userName.toAscii().data()
     
    378378        *_ephStreamGPS << line;
    379379         
    380         QString hlp = QDateTime::currentDateTime().toUTC().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);
     380        QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);
    381381        *_ephStreamGPS << _pgmName.toAscii().data()
    382382                       << _userName.toAscii().data()
     
    395395        *_ephStreamGlonass << line;
    396396       
    397         QString hlp = QDateTime::currentDateTime().toUTC().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);
     397        QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);
    398398        *_ephStreamGlonass << _pgmName.toAscii().data()
    399399                           << _userName.toAscii().data()
Note: See TracChangeset for help on using the changeset viewer.