Index: trunk/BNC/bncapp.cpp
===================================================================
--- trunk/BNC/bncapp.cpp	(revision 2000)
+++ trunk/BNC/bncapp.cpp	(revision 2001)
@@ -683,4 +683,5 @@
   for (long sec = minTime; sec <= maxTime; sec++) {
     QList<QString> allCorrs = _corrs->values(sec);
+    emit newCorrections(allCorrs);
     QListIterator<QString> it(allCorrs);
     while (it.hasNext()) {
Index: trunk/BNC/bncapp.h
===================================================================
--- trunk/BNC/bncapp.h	(revision 2000)
+++ trunk/BNC/bncapp.h	(revision 2001)
@@ -57,4 +57,5 @@
     void newEphGPS(gpsephemeris gpseph);
     void newEphGlonass(glonassephemeris glonasseph);
+    void newCorrections(QList<QString>);
     
  private slots:
Index: trunk/BNC/bnccaster.cpp
===================================================================
--- trunk/BNC/bnccaster.cpp	(revision 2000)
+++ trunk/BNC/bnccaster.cpp	(revision 2001)
@@ -258,4 +258,6 @@
     connect(((bncApp*)qApp), SIGNAL(newEphGPS(gpsephemeris)),
 	    PPPthread, SLOT(slotNewEphGPS(gpsephemeris)));
+    connect(((bncApp*)qApp), SIGNAL(newCorrections(QList<QString>)),
+	    PPPthread, SLOT(slotNewCorrections(QList<QString>)));
     PPPthread->start();
   }
Index: trunk/BNC/bncpppthread.cpp
===================================================================
--- trunk/BNC/bncpppthread.cpp	(revision 2000)
+++ trunk/BNC/bncpppthread.cpp	(revision 2001)
@@ -90,5 +90,5 @@
 // 
 ////////////////////////////////////////////////////////////////////////////
-void bncPPPthread::slotNewEpochData(QList<p_obs>) {
+void bncPPPthread::slotNewEpochData(QList<p_obs> obsList) {
 
 }
@@ -99,2 +99,8 @@
 
 }
+
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncPPPthread::slotNewCorrections(QList<QString> corrList) {
+
+}
Index: trunk/BNC/bncpppthread.h
===================================================================
--- trunk/BNC/bncpppthread.h	(revision 2000)
+++ trunk/BNC/bncpppthread.h	(revision 2001)
@@ -52,6 +52,7 @@
 
  public slots:
-  void slotNewEpochData(QList<p_obs>);
+  void slotNewEpochData(QList<p_obs> obsList);
   void slotNewEphGPS(gpsephemeris gpseph);
+  void slotNewCorrections(QList<QString> corrList);
 
  private:
