Changeset 5068 in ntrip for trunk/BNC/src/rinex/reqcanalyze.cpp


Ignore:
Timestamp:
Mar 30, 2013, 11:39:46 AM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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);
Note: See TracChangeset for help on using the changeset viewer.