Index: trunk/BNC/src/PPP/pppThread.cpp
===================================================================
--- trunk/BNC/src/PPP/pppThread.cpp	(revision 5731)
+++ trunk/BNC/src/PPP/pppThread.cpp	(revision 5732)
@@ -94,6 +94,6 @@
             this, SLOT(slotNewEphGalileo(galileoephemeris)));
 
-    connect(BNC_CORE, SIGNAL(newCorrections(QList<QString>)),
-            this, SLOT(slotNewCorrections(QList<QString>)));
+    connect(BNC_CORE, SIGNAL(newCorrections(QStringList)),
+            this, SLOT(slotNewCorrections(QStringList)));
   }
 }
@@ -128,5 +128,5 @@
 // 
 ////////////////////////////////////////////////////////////////////////////
-void t_pppRun::slotNewCorrections(QList<QString> corrList) {
+void t_pppRun::slotNewCorrections(QStringList corrList) {
   QMutexLocker locker(&_mutex);
   cout << _opt._roverName << " slotNewCorrections" << endl;
Index: trunk/BNC/src/PPP/pppThread.h
===================================================================
--- trunk/BNC/src/PPP/pppThread.h	(revision 5731)
+++ trunk/BNC/src/PPP/pppThread.h	(revision 5732)
@@ -20,5 +20,5 @@
   void slotNewEphGlonass(glonassephemeris gloeph);
   void slotNewEphGalileo(galileoephemeris galeph);
-  void slotNewCorrections(QList<QString> corrList);
+  void slotNewCorrections(QStringList corrList);
   void slotNewObs(QByteArray staID, QList<t_obs> obsList);
 
Index: trunk/BNC/src/bnccore.cpp
===================================================================
--- trunk/BNC/src/bnccore.cpp	(revision 5731)
+++ trunk/BNC/src/bnccore.cpp	(revision 5732)
@@ -690,5 +690,5 @@
 ////////////////////////////////////////////////////////////////////////////
 void t_bncCore::dumpCorrs(bncTime minTime, bncTime maxTime) {
-  QList<QString> allCorrs;
+  QStringList allCorrs;
   QMutableMapIterator<bncTime, QString> it(*_corrs);
   while (it.hasNext()) {
@@ -706,5 +706,5 @@
 ////////////////////////////////////////////////////////////////////////////
 void t_bncCore::dumpCorrs() {
-  QList<QString> allCorrs;
+  QStringList allCorrs;
   QMutableMapIterator<bncTime, QString> it(*_corrs);
   while (it.hasNext()) {
@@ -717,5 +717,5 @@
 // Dump List of Corrections 
 ////////////////////////////////////////////////////////////////////////////
-void t_bncCore::dumpCorrs(const QList<QString>& allCorrs) {
+void t_bncCore::dumpCorrs(const QStringList& allCorrs) {
   emit newCorrections(allCorrs);
   if (_socketsCorr) {
Index: trunk/BNC/src/bnccore.h
===================================================================
--- trunk/BNC/src/bnccore.h	(revision 5731)
+++ trunk/BNC/src/bnccore.h	(revision 5732)
@@ -81,5 +81,5 @@
     void newEphGlonass(glonassephemeris glonasseph);
     void newEphGalileo(galileoephemeris galileoeph);
-    void newCorrections(QList<QString>);
+    void newCorrections(QStringList);
     void providerIDChanged(QString);
     
@@ -96,5 +96,5 @@
     void dumpCorrs(bncTime minTime, bncTime maxTime);
     void dumpCorrs();
-    void dumpCorrs(const QList<QString>& allCorrs);
+    void dumpCorrs(const QStringList& allCorrs);
     void messagePrivate(const QByteArray& msg);
     void checkEphemeris(gpsephemeris* oldEph, gpsephemeris* newEph);
Index: trunk/BNC/src/bncpppclient.cpp
===================================================================
--- trunk/BNC/src/bncpppclient.cpp	(revision 5731)
+++ trunk/BNC/src/bncpppclient.cpp	(revision 5732)
@@ -74,6 +74,6 @@
             BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
 
-    connect(BNC_CORE, SIGNAL(newCorrections(QList<QString>)),
-            this, SLOT(slotNewCorrections(QList<QString>)));
+    connect(BNC_CORE, SIGNAL(newCorrections(QStringList)),
+            this, SLOT(slotNewCorrections(QStringList)));
 
     connect(BNC_CORE, SIGNAL(providerIDChanged(QString)),
@@ -254,5 +254,5 @@
 // 
 ////////////////////////////////////////////////////////////////////////////
-void bncPPPclient::slotNewCorrections(QList<QString> corrList) {
+void bncPPPclient::slotNewCorrections(QStringList corrList) {
   QMutexLocker locker(&_mutex);
 
Index: trunk/BNC/src/bncpppclient.h
===================================================================
--- trunk/BNC/src/bncpppclient.h	(revision 5731)
+++ trunk/BNC/src/bncpppclient.h	(revision 5732)
@@ -132,5 +132,5 @@
 
  public slots:
-  void slotNewCorrections(QList<QString> corrList);
+  void slotNewCorrections(QStringList corrList);
   void slotProviderIDChanged(QString mountPoint);
 
Index: trunk/BNC/src/rinex/bncpostprocess.cpp
===================================================================
--- trunk/BNC/src/rinex/bncpostprocess.cpp	(revision 5731)
+++ trunk/BNC/src/rinex/bncpostprocess.cpp	(revision 5732)
@@ -169,6 +169,6 @@
     if (!_opt->corrFileName.isEmpty()) {
       _corrFile = new t_corrFile(_opt->corrFileName);
-      connect(_corrFile, SIGNAL(newCorrections(QList<QString>)),
-              _pppClient, SLOT(slotNewCorrections(QList<QString>)),
+      connect(_corrFile, SIGNAL(newCorrections(QStringList)),
+              _pppClient, SLOT(slotNewCorrections(QStringList)),
               Qt::DirectConnection);
     }
Index: trunk/BNC/src/rinex/corrfile.cpp
===================================================================
--- trunk/BNC/src/rinex/corrfile.cpp	(revision 5731)
+++ trunk/BNC/src/rinex/corrfile.cpp	(revision 5732)
@@ -71,5 +71,5 @@
   }
 
-  QList<QString> corrs;
+  QStringList corrs;
 
   if (!_lastLine.isEmpty()) {
Index: trunk/BNC/src/rinex/corrfile.h
===================================================================
--- trunk/BNC/src/rinex/corrfile.h	(revision 5731)
+++ trunk/BNC/src/rinex/corrfile.h	(revision 5732)
@@ -40,5 +40,5 @@
 
  signals:
-  void newCorrections(QList<QString>);
+  void newCorrections(QStringList);
 
  private:
