Changeset 4310 in ntrip
- Timestamp:
- Jun 23, 2012, 2:07:28 PM (12 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/graphwin.cpp
r4309 r4310 40 40 41 41 #include "graphwin.h" 42 #include "polarplot.h"43 42 44 43 using namespace std; … … 46 45 // Constructor 47 46 //////////////////////////////////////////////////////////////////////////// 48 t_graphWin::t_graphWin(QWidget* parent, const QVector< t_polarPlot*>& plots) :47 t_graphWin::t_graphWin(QWidget* parent, const QVector<QWidget*>& plots) : 49 48 QDialog(parent) { 50 49 -
trunk/BNC/src/rinex/graphwin.h
r4307 r4310 29 29 #include <QtGui> 30 30 31 class t_polarPlot;32 33 31 class t_graphWin : public QDialog { 34 32 … … 36 34 37 35 public: 38 t_graphWin(QWidget* parent, const QVector< t_polarPlot*>& plots);36 t_graphWin(QWidget* parent, const QVector<QWidget*>& plots); 39 37 ~t_graphWin(); 40 38 -
trunk/BNC/src/rinex/reqcanalyze.cpp
r4308 r4310 85 85 void t_reqcAnalyze::slotDisplayGraph() { 86 86 if (((bncApp*) qApp)->mode() == bncApp::interactive) { 87 QVector< t_polarPlot*> plots;87 QVector<QWidget*> plots; 88 88 t_polarPlot* plotMP1 = new t_polarPlot(0); plots << plotMP1; 89 89 t_polarPlot* plotMP2 = new t_polarPlot(0); plots << plotMP2;
Note:
See TracChangeset
for help on using the changeset viewer.