Index: trunk/BNC/src/PPP/pppMain.cpp
===================================================================
--- trunk/BNC/src/PPP/pppMain.cpp	(revision 5810)
+++ trunk/BNC/src/PPP/pppMain.cpp	(revision 5813)
@@ -73,7 +73,7 @@
     while (iOpt.hasNext()) {
       const t_pppOptions* opt = iOpt.next();
-      t_pppInclude.hread* pppInclude.hread = new t_pppInclude.hread(opt);
-      pppInclude.hread->start();
-      _pppInclude.hreads << pppInclude.hread;
+      t_pppThread* pppThread = new t_pppThread(opt);
+      pppThread->start();
+      _pppThreads << pppThread;
       _running = true;
     }
@@ -92,10 +92,10 @@
   }
 
-  QListIterator<t_pppInclude.hread*> it(_pppInclude.hreads);
+  QListIterator<t_pppThread*> it(_pppThreads);
   while (it.hasNext()) {
-    t_pppInclude.hread* pppInclude.hread = it.next();
-    pppInclude.hread->exit();
-  }
-  _pppInclude.hreads.clear();
+    t_pppThread* pppThread = it.next();
+    pppThread->exit();
+  }
+  _pppThreads.clear();
 
   QListIterator<t_pppOptions*> iOpt(_options);
Index: trunk/BNC/src/PPP/pppMain.h
===================================================================
--- trunk/BNC/src/PPP/pppMain.h	(revision 5810)
+++ trunk/BNC/src/PPP/pppMain.h	(revision 5813)
@@ -4,5 +4,5 @@
 #include <QtCore>
 #include "pppOptions.h"
-#include "pppInclude.hread.h"
+#include "pppThread.h"
 
 namespace BNC {
@@ -18,10 +18,10 @@
   void readOptions();
 
-  QList<t_pppOptions*>   _options;
-  QList<t_pppInclude.hread*> _pppInclude.hreads;
-  QString             _logFile;
-  QString             _nmeaFile;
-  int                 _nmeaPort;
-  bool                _running;
+  QList<t_pppOptions*> _options;
+  QList<t_pppThread*>  _pppThreads;
+  QString              _logFile;
+  QString              _nmeaFile;
+  int                  _nmeaPort;
+  bool                 _running;
 };
 
Index: trunk/BNC/src/PPP/pppThread.cpp
===================================================================
--- trunk/BNC/src/PPP/pppThread.cpp	(revision 5810)
+++ trunk/BNC/src/PPP/pppThread.cpp	(revision 5813)
@@ -28,5 +28,5 @@
  * -------------------------------------------------------------------------
  *
- * Class:      t_pppInclude.hread, t_pppRun
+ * Class:      t_pppThread, t_pppRun
  *
  * Purpose:    Single PPP Client (running in its own thread)
@@ -46,5 +46,5 @@
 #include <map>
 
-#include "pppInclude.hread.h"
+#include "pppThread.h"
 #include "bnccore.h"
 
@@ -54,5 +54,5 @@
 // Constructor
 ////////////////////////////////////////////////////////////////////////////
-t_pppInclude.hread::t_pppInclude.hread(const t_pppOptions* opt) : QThread(0) {
+t_pppThread::t_pppThread(const t_pppOptions* opt) : QThread(0) {
   _opt   = opt;
   _pppRun = 0;
@@ -65,5 +65,5 @@
 // Destructor
 ////////////////////////////////////////////////////////////////////////////
-t_pppInclude.hread::~t_pppInclude.hread() {
+t_pppThread::~t_pppThread() {
   delete _pppRun;
 }
@@ -71,5 +71,5 @@
 // Run (virtual)
 ////////////////////////////////////////////////////////////////////////////
-void t_pppInclude.hread::run() {
+void t_pppThread::run() {
   try {
     _pppRun = new t_pppRun(_opt);
Index: trunk/BNC/src/PPP/pppThread.h
===================================================================
--- trunk/BNC/src/PPP/pppThread.h	(revision 5810)
+++ trunk/BNC/src/PPP/pppThread.h	(revision 5813)
@@ -47,9 +47,9 @@
 };
 
-class t_pppInclude.hread : public QThread {
+class t_pppThread : public QThread {
  Q_OBJECT
  public:
-  t_pppInclude.hread(const t_pppOptions* opt);
-  ~t_pppInclude.hread();
+  t_pppThread(const t_pppOptions* opt);
+  ~t_pppThread();
   virtual void run();
 
