Changeset 4345 in ntrip
- Timestamp:
- Jun 24, 2012, 4:16:31 PM (12 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/polarplot.cpp
r4336 r4345 42 42 // Constructor 43 43 //////////////////////////////////////////////////////////////////////////// 44 t_polarPlot::t_polarPlot(QWidget* parent) : 45 QwtPolarPlot(QwtText("Polar Plot"), parent) { 44 t_polarPlot::t_polarPlot(const QwtText& title, QWidget* parent) : 45 46 QwtPolarPlot(title, parent) { 46 47 47 48 setPlotBackground(Qt::white); -
trunk/BNC/src/rinex/polarplot.h
r4336 r4345 63 63 64 64 public: 65 t_polarPlot( QWidget* = 0);65 t_polarPlot(const QwtText& title, QWidget* = 0); 66 66 void addCurve(QVector<t_polarPoint*>* data); 67 67 -
trunk/BNC/src/rinex/reqcanalyze.cpp
r4344 r4345 89 89 if (((bncApp*) qApp)->mode() == bncApp::interactive) { 90 90 91 t_polarPlot* plotMP1 = new t_polarPlot( 0);91 t_polarPlot* plotMP1 = new t_polarPlot(QwtText("MP1"), 0); 92 92 plotMP1->addCurve(dataMP1); 93 93 94 t_polarPlot* plotMP2 = new t_polarPlot( 0);94 t_polarPlot* plotMP2 = new t_polarPlot(QwtText("MP2"), 0); 95 95 plotMP2->addCurve(dataMP2); 96 96
Note:
See TracChangeset
for help on using the changeset viewer.