Index: /trunk/BNC/combination/bnccomb.cpp
===================================================================
--- /trunk/BNC/combination/bnccomb.cpp	(revision 3215)
+++ /trunk/BNC/combination/bnccomb.cpp	(revision 3216)
@@ -547,4 +547,5 @@
 
   ostringstream out; out.setf(std::ios::fixed);
+  QStringList   corrLines;
 
   unsigned year, month, day, hour, minute;
@@ -617,4 +618,8 @@
             << setw(8)  << setprecision(3) << dcbP1P2
             << setw(6)  << setprecision(1) << dT;
+        ostringstream outLine; outLine.setf(std::ios::fixed);
+
+        outLine << " COMB";
+        corrLines << QString(outLine.str().c_str());
       }
       else {
@@ -634,19 +639,9 @@
   _rtnetDecoder->Decode((char*) out.str().c_str(), out.str().size(), errmsg);
 
-    // Optionally send new Corrections to PPP
-    // --------------------------------------
-    bncApp* app = (bncApp*) qApp;
-    if (app->_bncPPPclient) {
-//    QStringList corrLines;
-//    co.messageType = COTYPE_GPSCOMBINED;
-//    QStringListIterator il(RTCM3coDecoder::corrsToASCIIlines(resTime.gpsw(), 
-//                                                  resTime.gpssec(), co, 0));
-//    while (il.hasNext()) {
-//      QString line = il.next();
-//      line += " COMB";
-//      corrLines << line;
-//    }
-//    
-//    app->_bncPPPclient->slotNewCorrections(corrLines);
-    }
-}
+  // Optionally send new Corrections to PPP
+  // --------------------------------------
+  bncApp* app = (bncApp*) qApp;
+  if (app->_bncPPPclient) {
+    app->_bncPPPclient->slotNewCorrections(corrLines);
+  }
+}
