Index: trunk/BNC/src/rinex/polarplot.cpp
===================================================================
--- trunk/BNC/src/rinex/polarplot.cpp	(revision 4344)
+++ trunk/BNC/src/rinex/polarplot.cpp	(revision 4345)
@@ -42,6 +42,7 @@
 // Constructor
 ////////////////////////////////////////////////////////////////////////////
-t_polarPlot::t_polarPlot(QWidget* parent) : 
-  QwtPolarPlot(QwtText("Polar Plot"), parent) {
+t_polarPlot::t_polarPlot(const QwtText& title, QWidget* parent) : 
+
+  QwtPolarPlot(title, parent) {
 
   setPlotBackground(Qt::white);
Index: trunk/BNC/src/rinex/polarplot.h
===================================================================
--- trunk/BNC/src/rinex/polarplot.h	(revision 4344)
+++ trunk/BNC/src/rinex/polarplot.h	(revision 4345)
@@ -63,5 +63,5 @@
 
  public:
-  t_polarPlot(QWidget* = 0);
+  t_polarPlot(const QwtText& title, QWidget* = 0);
   void addCurve(QVector<t_polarPoint*>* data);
 
Index: trunk/BNC/src/rinex/reqcanalyze.cpp
===================================================================
--- trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 4344)
+++ trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 4345)
@@ -89,8 +89,8 @@
   if (((bncApp*) qApp)->mode() == bncApp::interactive) {
 
-    t_polarPlot* plotMP1 = new t_polarPlot(0);
+    t_polarPlot* plotMP1 = new t_polarPlot(QwtText("MP1"), 0);
     plotMP1->addCurve(dataMP1);
 
-    t_polarPlot* plotMP2 = new t_polarPlot(0);
+    t_polarPlot* plotMP2 = new t_polarPlot(QwtText("MP2"), 0);
     plotMP2->addCurve(dataMP2);
     
