Changeset 4310 in ntrip


Ignore:
Timestamp:
Jun 23, 2012, 2:07:28 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/rinex
Files:
3 edited

Legend:

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

    r4309 r4310  
    4040
    4141#include "graphwin.h"
    42 #include "polarplot.h"
    4342
    4443using namespace std;
     
    4645// Constructor
    4746////////////////////////////////////////////////////////////////////////////
    48 t_graphWin::t_graphWin(QWidget* parent, const QVector<t_polarPlot*>& plots) :
     47t_graphWin::t_graphWin(QWidget* parent, const QVector<QWidget*>& plots) :
    4948 QDialog(parent) {
    5049
  • trunk/BNC/src/rinex/graphwin.h

    r4307 r4310  
    2929#include <QtGui>
    3030
    31 class t_polarPlot;
    32 
    3331class t_graphWin : public QDialog {
    3432
     
    3634
    3735 public:
    38   t_graphWin(QWidget* parent, const QVector<t_polarPlot*>& plots);
     36  t_graphWin(QWidget* parent, const QVector<QWidget*>& plots);
    3937  ~t_graphWin();
    4038
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r4308 r4310  
    8585void t_reqcAnalyze::slotDisplayGraph() {
    8686  if (((bncApp*) qApp)->mode() == bncApp::interactive) {
    87     QVector<t_polarPlot*> plots;
     87    QVector<QWidget*> plots;
    8888    t_polarPlot* plotMP1 = new t_polarPlot(0); plots << plotMP1;
    8989    t_polarPlot* plotMP2 = new t_polarPlot(0); plots << plotMP2;
Note: See TracChangeset for help on using the changeset viewer.