Changeset 5068 in ntrip for trunk/BNC/src/rinex


Ignore:
Timestamp:
Mar 30, 2013, 11:39:46 AM (11 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/rinex
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/bncpostprocess.cpp

    r5066 r5068  
    9898  }
    9999  else {
    100     PGM_CORE->slotMessage(msg, false);
     100    BNC_CORE->slotMessage(msg, false);
    101101  }
    102102}
     
    222222  }
    223223
    224   if (PGM_CORE->mode() != t_pgmCore::interactive) {
     224  if (BNC_CORE->mode() != t_pgmCore::interactive) {
    225225    qApp->exit(0);
    226226  }
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r5066 r5068  
    101101  delete _log;     _log     = 0;
    102102  delete _logFile; _logFile = 0;
    103   if (PGM_CORE->mode() != t_pgmCore::interactive) {
     103  if (BNC_CORE->mode() != t_pgmCore::interactive) {
    104104    qApp->exit(0);
    105105  }
     
    116116                                   double maxValue) {
    117117
    118   if (PGM_CORE->GUIenabled()) {
     118  if (BNC_CORE->GUIenabled()) {
    119119
    120120    if (maxValue == 0.0) {
     
    142142    if (data1) {
    143143      t_polarPlot* plot1 = new t_polarPlot(QwtText(title1), scaleInterval,
    144                                           PGM_CORE->mainWindow());
     144                                          BNC_CORE->mainWindow());
    145145      plot1->addCurve(data1);
    146146      plots << plot1;
     
    148148    if (data2) {
    149149      t_polarPlot* plot2 = new t_polarPlot(QwtText(title2), scaleInterval,
    150                                            PGM_CORE->mainWindow());
     150                                           BNC_CORE->mainWindow());
    151151      plot2->addCurve(data2);
    152152      plots << plot2;
     
    296296  // Show the plots
    297297  // --------------
    298   if (PGM_CORE->GUIenabled()) {
     298  if (BNC_CORE->GUIenabled()) {
    299299    QFileInfo  fileInfo(obsFile->fileName());
    300300    QByteArray title = fileInfo.fileName().toAscii();
     
    651651                                     const QByteArray& title) {
    652652
    653   if (PGM_CORE->GUIenabled()) {
     653  if (BNC_CORE->GUIenabled()) {
    654654    t_availPlot* plotA = new t_availPlot(0, &_availDataMap);
    655655    plotA->setTitle(title);
  • trunk/BNC/src/rinex/reqcedit.cpp

    r5066 r5068  
    108108
    109109    *_log << QByteArray("Program").leftJustified(15) << ": "
    110           << PGM_CORE->pgmName() << endl;
     110          << BNC_CORE->pgmName() << endl;
    111111    *_log << QByteArray("Run by").leftJustified(15) << ": "
    112           << PGM_CORE->userName() << endl;
     112          << BNC_CORE->userName() << endl;
    113113    *_log << QByteArray("Date").leftJustified(15) << ": "
    114114          << QDateTime::currentDateTime().toUTC().toString("yyyy-MM-dd hh:mm:ss") << endl;
     
    146146  // Exit (thread)
    147147  // -------------
    148   if (PGM_CORE->mode() != t_pgmCore::interactive) {
     148  if (BNC_CORE->mode() != t_pgmCore::interactive) {
    149149    qApp->exit(0);
    150150  }
  • trunk/BNC/src/rinex/rnxnavfile.cpp

    r5066 r5068  
    241241void t_rnxNavFile::writeHeader(const QMap<QString, QString>* txtMap) {
    242242
    243   QString     runBy = PGM_CORE->userName();
     243  QString     runBy = BNC_CORE->userName();
    244244  QStringList comments;
    245245
     
    275275                                            : "yyyyMMdd hhmmss UTC";
    276276  *_stream << QString("%1%2%3")
    277     .arg(PGM_CORE->pgmName(), -20)
     277    .arg(BNC_CORE->pgmName(), -20)
    278278    .arg(runBy.trimmed().left(20), -20)
    279279    .arg(QDateTime::currentDateTime().toUTC().toString(fmtDate), -20)
  • trunk/BNC/src/rinex/rnxobsfile.cpp

    r5066 r5068  
    213213
    214214  QStringList newComments;
    215   QString     runBy = PGM_CORE->userName();
     215  QString     runBy = BNC_CORE->userName();
    216216
    217217  if (txtMap) {
     
    236236                                                  : "yyyyMMdd hhmmss UTC";
    237237  *stream << QString("%1%2%3")
    238     .arg(PGM_CORE->pgmName(), -20)
     238    .arg(BNC_CORE->pgmName(), -20)
    239239    .arg(runBy.trimmed().left(20), -20)
    240240    .arg(QDateTime::currentDateTime().toUTC().toString(fmtDate), -20)
Note: See TracChangeset for help on using the changeset viewer.