Changeset 4345 in ntrip


Ignore:
Timestamp:
Jun 24, 2012, 4:16:31 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/rinex
Files:
3 edited

Legend:

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

    r4336 r4345  
    4242// Constructor
    4343////////////////////////////////////////////////////////////////////////////
    44 t_polarPlot::t_polarPlot(QWidget* parent) :
    45   QwtPolarPlot(QwtText("Polar Plot"), parent) {
     44t_polarPlot::t_polarPlot(const QwtText& title, QWidget* parent) :
     45
     46  QwtPolarPlot(title, parent) {
    4647
    4748  setPlotBackground(Qt::white);
  • trunk/BNC/src/rinex/polarplot.h

    r4336 r4345  
    6363
    6464 public:
    65   t_polarPlot(QWidget* = 0);
     65  t_polarPlot(const QwtText& title, QWidget* = 0);
    6666  void addCurve(QVector<t_polarPoint*>* data);
    6767
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r4344 r4345  
    8989  if (((bncApp*) qApp)->mode() == bncApp::interactive) {
    9090
    91     t_polarPlot* plotMP1 = new t_polarPlot(0);
     91    t_polarPlot* plotMP1 = new t_polarPlot(QwtText("MP1"), 0);
    9292    plotMP1->addCurve(dataMP1);
    9393
    94     t_polarPlot* plotMP2 = new t_polarPlot(0);
     94    t_polarPlot* plotMP2 = new t_polarPlot(QwtText("MP2"), 0);
    9595    plotMP2->addCurve(dataMP2);
    9696   
Note: See TracChangeset for help on using the changeset viewer.