Changeset 156 in ntrip


Ignore:
Timestamp:
Sep 9, 2006, 10:46:36 AM (18 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncrinex.cpp

    r155 r156  
    1818#include <QSettings>
    1919#include <QDir>
     20#include <QUrl>
    2021#include <QDate>
    2122#include <QFile>
     
    4647    QString hlp = it.next();
    4748    if (hlp.indexOf(_statID) != -1) {
    48       _mountPoint = hlp;
     49      QUrl url(hlp);
     50      _mountPoint = url.host() + url.path();
    4951      break;
    5052    }
     
    185187                                "    hh    mm   ss.zzz0000").toAscii().data();
    186188        _out << "                 TIME OF FIRST OBS"    << endl;
    187         _out << QString("GENERATED FROM STREAM %1")
    188               .arg(_mountPoint, 38, ' ').toAscii().data() << "COMMENT" << endl;
     189        QString hlp = QString("GENERATED FROM STREAM %1").arg(_mountPoint)
     190                             .leftJustified(60, ' ', true);
     191        _out << hlp.toAscii().data() << "COMMENT" << endl;
    189192      }
    190193      else {
     
    225228                                "    hh    mm   ss.zzz0000").toAscii().data();
    226229    _out << "                 "                                      << "TIME OF FIRST OBS"    << endl;
    227     _out << QString("GENERATED FROM STREAM %1")
    228               .arg(_mountPoint, 38, ' ').toAscii().data() << "COMMENT" << endl;
     230    QString hlp = QString("GENERATED FROM STREAM %1").arg(_mountPoint)
     231                         .leftJustified(60, ' ', true);
     232    _out << hlp.toAscii().data() << "COMMENT" << endl;
    229233    _out << "                                                            END OF HEADER"        << endl;
    230234  }
Note: See TracChangeset for help on using the changeset viewer.