Index: /trunk/GnssCenter/monitor/monitor.cpp
===================================================================
--- /trunk/GnssCenter/monitor/monitor.cpp	(revision 5444)
+++ /trunk/GnssCenter/monitor/monitor.cpp	(revision 5445)
@@ -1,10 +1,10 @@
 
 /* -------------------------------------------------------------------------
- * RTNet GUI
+ * RTNet Monitor
  * -------------------------------------------------------------------------
  *
- * Class:      t_map_stations
+ * Class:      t_monitor
  *
- * Purpose:    Plot map of stations/satellites
+ * Purpose:    Real-Time Monitoring of RTNet
  *
  * Author:     L. Mervart
@@ -28,5 +28,5 @@
 #include <qwt_plot_renderer.h>
 
-#include "map_stations.h"
+#include "monitor.h"
 #include "utils.h"
 #include "worldplot.h"
@@ -36,9 +36,9 @@
 using namespace GnssCenter;
 
-Q_EXPORT_PLUGIN2(gnsscenter_map_stations, GnssCenter::t_map_stationsFactory)
+Q_EXPORT_PLUGIN2(gnsscenter_monitor, GnssCenter::t_monitorFactory)
 
 // Constructor
 /////////////////////////////////////////////////////////////////////////////
-t_map_stations::t_map_stations() : QMainWindow() {
+t_monitor::t_monitor() : QMainWindow() {
 
   // World Plot
@@ -49,5 +49,5 @@
   // Tool Bar
   // --------
-  QToolBar* toolBar = new QToolBar("t_map_stations_ToolBar");
+  QToolBar* toolBar = new QToolBar("t_monitor_ToolBar");
   addToolBar(Qt::BottomToolBarArea, toolBar);
 
@@ -68,5 +68,5 @@
 // Destructor
 /////////////////////////////////////////////////////////////////////////////
-t_map_stations::~t_map_stations() {
+t_monitor::~t_monitor() {
   slotStopThrift();
   if (_results) {
@@ -81,5 +81,5 @@
 // 
 /////////////////////////////////////////////////////////////////////////////
-void t_map_stations::slotStartThrift() {
+void t_monitor::slotStartThrift() {
   if (!_thriftClient) {
     _thriftClient = new t_thriftClient(this);
@@ -92,5 +92,5 @@
 // 
 /////////////////////////////////////////////////////////////////////////////
-void t_map_stations::slotStopThrift() {
+void t_monitor::slotStopThrift() {
   if (_thriftClient) {
     _thriftClient->stop();
@@ -101,5 +101,5 @@
 // 
 /////////////////////////////////////////////////////////////////////////////
-void t_map_stations::slotThriftFinished() {
+void t_monitor::slotThriftFinished() {
   sender()->deleteLater();
   _thriftClient = 0;
@@ -108,5 +108,5 @@
 // 
 /////////////////////////////////////////////////////////////////////////////
-void t_map_stations::putThriftResults(std::vector<t_thriftResult*>* results) {
+void t_monitor::putThriftResults(std::vector<t_thriftResult*>* results) {
   QMutexLocker locker(&_mutex);
   if (_results) {
@@ -122,5 +122,5 @@
 // 
 /////////////////////////////////////////////////////////////////////////////
-void t_map_stations::slotPlotResults() {
+void t_monitor::slotPlotResults() {
   QMutexLocker locker(&_mutex);
 
Index: /trunk/GnssCenter/monitor/monitor.h
===================================================================
--- /trunk/GnssCenter/monitor/monitor.h	(revision 5444)
+++ /trunk/GnssCenter/monitor/monitor.h	(revision 5445)
@@ -1,4 +1,4 @@
-#ifndef GnssCenter_MAP_STATIONS_H
-#define GnssCenter_MAP_STATIONS_H
+#ifndef GnssCenter_MONITOR_H
+#define GnssCenter_MONITOR_H
 
 #include <QtGui>
@@ -15,9 +15,9 @@
 namespace GnssCenter {
 
-class t_map_stations : public QMainWindow {
+class t_monitor : public QMainWindow {
  Q_OBJECT
  public:
-  t_map_stations();
-  ~t_map_stations();
+  t_monitor();
+  ~t_monitor();
 
   void putThriftResults(std::vector<t_thriftResult*>* results);
@@ -36,10 +36,10 @@
 };
 
-class t_map_stationsFactory : public QObject, public t_pluginFactoryInterface {
+class t_monitorFactory : public QObject, public t_pluginFactoryInterface {
  Q_OBJECT
  Q_INTERFACES(GnssCenter::t_pluginFactoryInterface)
  public:
-  virtual QWidget* create() {return new t_map_stations();} 
-  virtual QString getName() const {return QString("Map of Stations");}
+  virtual QWidget* create() {return new t_monitor();} 
+  virtual QString getName() const {return QString("RTNet Monitor");}
 };
 
