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


Ignore:
Timestamp:
Jul 29, 2012, 5:18:09 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r4448 r4450  
    6868  _currEpo = 0;
    6969
    70   connect(this, SIGNAL(displayGraph(QVector<t_polarPoint*>*, QVector<t_polarPoint*>*)),
    71           this, SLOT(slotDisplayGraph(QVector<t_polarPoint*>*, QVector<t_polarPoint*>*)));
     70  connect(this, SIGNAL(displayGraph(const QString&, QVector<t_polarPoint*>*, QVector<t_polarPoint*>*)),
     71          this, SLOT(slotDisplayGraph(const QString&, QVector<t_polarPoint*>*, QVector<t_polarPoint*>*)));
    7272}
    7373
     
    8787// 
    8888////////////////////////////////////////////////////////////////////////////
    89 void t_reqcAnalyze::slotDisplayGraph(QVector<t_polarPoint*>* dataMP1,
     89void t_reqcAnalyze::slotDisplayGraph(const QString& fileName,
     90                                     QVector<t_polarPoint*>* dataMP1,
    9091                                     QVector<t_polarPoint*>* dataMP2) {
    9192
     
    128129    plots << plotMP2;
    129130
    130     t_graphWin* graphWin = new t_graphWin(0, plots, scaleInterval);
     131    t_graphWin* graphWin = new t_graphWin(0, fileName, plots, scaleInterval);
    131132
    132133    graphWin->show();
     
    227228  }
    228229
    229   emit displayGraph(dataMP1, dataMP2);
     230  emit displayGraph(obsFile->fileName(), dataMP1, dataMP2);
    230231
    231232  _log->flush();
Note: See TracChangeset for help on using the changeset viewer.