Index: /trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp
===================================================================
--- /trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp	(revision 6174)
+++ /trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp	(revision 6175)
@@ -349,10 +349,10 @@
     while (itOrb.hasNext()) {
       const t_orbCorr& orbCorr = itOrb.next();
-      *_out << "O " << orbCorr.toString() << endl;
+      *_out << orbCorr.toLine() << endl;
     }
     QListIterator<t_clkCorr> itClk(clkCorrections);
     while (itClk.hasNext()) {
       const t_clkCorr& clkCorr = itClk.next();
-      *_out << "C " << clkCorr.toString() << endl;
+      *_out << clkCorr.toLine() << endl;
     }
     _out->flush();
Index: /trunk/BNC/src/bnccore.cpp
===================================================================
--- /trunk/BNC/src/bnccore.cpp	(revision 6174)
+++ /trunk/BNC/src/bnccore.cpp	(revision 6175)
@@ -640,5 +640,5 @@
         QTcpSocket* sock = is.next();
         if (sock->state() == QAbstractSocket::ConnectedState) {
-          if (sock->write(corr.toString().c_str()) == -1) {
+          if (sock->write(corr.toLine().c_str()) == -1) {
             delete sock;
             is.remove();
@@ -667,5 +667,5 @@
         QTcpSocket* sock = is.next();
         if (sock->state() == QAbstractSocket::ConnectedState) {
-          if (sock->write(corr.toString().c_str()) == -1) {
+          if (sock->write(corr.toLine().c_str()) == -1) {
             delete sock;
             is.remove();
Index: /trunk/BNC/src/satObs.cpp
===================================================================
--- /trunk/BNC/src/satObs.cpp	(revision 6174)
+++ /trunk/BNC/src/satObs.cpp	(revision 6175)
@@ -15,10 +15,10 @@
 // 
 ////////////////////////////////////////////////////////////////////////////
-t_clkCorr::t_clkCorr(const string& str) {
+t_clkCorr::t_clkCorr(const string& line) {
 }
 
 // 
 ////////////////////////////////////////////////////////////////////////////
-string t_clkCorr::toString() const {
+string t_clkCorr::toLine() const {
   return "CLK";
 }
@@ -35,10 +35,10 @@
 // 
 ////////////////////////////////////////////////////////////////////////////
-t_orbCorr::t_orbCorr(const string& str) {
+t_orbCorr::t_orbCorr(const string& line) {
 }
 
 // 
 ////////////////////////////////////////////////////////////////////////////
-string t_orbCorr::toString() const {
+string t_orbCorr::toLine() const {
   return "ORB";
 }
Index: /trunk/BNC/src/satObs.h
===================================================================
--- /trunk/BNC/src/satObs.h	(revision 6174)
+++ /trunk/BNC/src/satObs.h	(revision 6175)
@@ -60,8 +60,8 @@
  public:
   t_orbCorr();
-  t_orbCorr(const std::string& str);
+  t_orbCorr(const std::string& line);
   t_prn          prn() const {return _prn;}
   unsigned short IOD() const {return _iod;}
-  std::string    toString() const;
+  std::string    toLine() const;
   std::string    _staID;
   t_prn          _prn;
@@ -76,8 +76,8 @@
  public:
   t_clkCorr();
-  t_clkCorr(const std::string& str);
+  t_clkCorr(const std::string& line);
   t_prn          prn() const {return _prn;}
   unsigned short IOD() const {return _iod;}
-  std::string    toString() const;
+  std::string    toLine() const;
   std::string    _staID;
   t_prn          _prn;
