Index: /trunk/BNC/src/bnctabledlg.cpp
===================================================================
--- /trunk/BNC/src/bnctabledlg.cpp	(revision 4657)
+++ /trunk/BNC/src/bnctabledlg.cpp	(revision 4658)
@@ -325,29 +325,20 @@
 
   t_bncMap* bncMap = new t_bncMap(this);
+
   bncMap->setGeometry( x(), int(y()+height()*1.3), 800, 600 );
 
-  connect(this, SIGNAL(newPoint(const QString&, double, double)),
-          bncMap, SLOT(slotNewPoint(const QString&, double, double)));
-      
-  _buttonMap->setEnabled(false);
-  showSourceTable();
-  bncMap->show();
-  _buttonMap->setEnabled(true);
-}
-
-// Show world map
-////////////////////////////////////////////////////////////////////////////
-void bncTableDlg::showSourceTable() {
-  for(int i = 0; i < _allLines.size(); i++) {
-    if (_allLines.at(i).startsWith("STR") == true){
-      QStringList tmp = _allLines.at(i).split(';');
-      if (tmp.size() > 0) {
+  for (int ii = 0; ii < _allLines.size(); ii++) {
+    if (_allLines.at(ii).startsWith("STR") == true) {
+      QStringList tmp = _allLines.at(ii).split(';');
+      if (tmp.size() > 10) {
         double  latDeg = tmp.at(9).toDouble();
         double  lonDeg = tmp.at(10).toDouble();
         QString name   = tmp.at(1);
-        emit newPoint(name, latDeg, lonDeg);
-      }
-    }
-  }
+        bncMap->slotNewPoint(name, latDeg, lonDeg);
+      }
+    }
+  }
+
+  bncMap->show();
 }
 
Index: /trunk/BNC/src/bnctabledlg.h
===================================================================
--- /trunk/BNC/src/bnctabledlg.h	(revision 4657)
+++ /trunk/BNC/src/bnctabledlg.h	(revision 4658)
@@ -65,5 +65,4 @@
   signals:
     void newMountPoints(QStringList* mountPoints);
-    void newPoint(const QString& name, double latDeg, double lonDeg);
 
   private slots:
@@ -79,5 +78,4 @@
   private:
     void addUrl(const QUrl& url);
-    void showSourceTable();
     QComboBox*   _casterHostComboBox;
     QLineEdit*   _casterPortLineEdit;
