Index: /trunk/BNC/test_bnc_qt.cpp
===================================================================
--- /trunk/BNC/test_bnc_qt.cpp	(revision 2712)
+++ /trunk/BNC/test_bnc_qt.cpp	(revision 2713)
@@ -46,5 +46,5 @@
 using namespace std;
 
-class t_obsInternal {
+class t_obsOld {
   public:
   int    flags;
@@ -143,11 +143,11 @@
       // Interpret a portion of buffer as observation
       // --------------------------------------------
-      t_obsInternal* obs;
-      const int obsSize = sizeof(t_obsInternal);
+      t_obsOld* obs;
+      const int obsSize = sizeof(t_obsOld);
 
 
       while (buffer.size() >= obsSize) {
 
-        obs = (t_obsInternal*) (buffer.left(obsSize).data());
+        obs = (t_obsOld*) (buffer.left(obsSize).data());
 
         cout << obs->StatID                      << " "
@@ -160,11 +160,9 @@
              << setprecision(4) << obs->P2       << " "
              << setprecision(4) << obs->L1       << " "
+             <<                    obs->slip_cnt_L1 << " "
              << setprecision(4) << obs->L2       << " "
-             <<                    obs->slip_cnt_L1 << " "
              <<                    obs->slip_cnt_L2 << " "
              << setprecision(4) << obs->S1       << " "
-             << setprecision(4) << obs->S2       << " "
-             <<                    obs->SNR1     << " "
-             <<                    obs->SNR2     << endl;
+             << setprecision(4) << obs->S2       << endl;
 
         buffer.remove(0,obsSize);
