Index: /trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
===================================================================
--- /trunk/BNC/src/RTCM3/RTCM3Decoder.cpp	(revision 8455)
+++ /trunk/BNC/src/RTCM3/RTCM3Decoder.cpp	(revision 8456)
@@ -1222,5 +1222,5 @@
     GETFLOATSIGN(eph._agf1, 8, 1.0 / (1 << 30) / (1 << 10))
 
-    eph._TOW = 0.9999E9;
+    eph._TOT = 0.9999E9;
     eph._health = 0;
 
@@ -1372,5 +1372,5 @@
     GETBITS(eph._SatH1, 1)
 
-    eph._TOW = 0.9999E9;
+    eph._TOT = 0.9999E9;
     emit newBDSEph(eph);
     decoded = true;
Index: /trunk/BNC/src/ephemeris.cpp
===================================================================
--- /trunk/BNC/src/ephemeris.cpp	(revision 8455)
+++ /trunk/BNC/src/ephemeris.cpp	(revision 8456)
@@ -630,4 +630,5 @@
   acc[1] = _y_acceleration * 1.e3;
   acc[2] = _z_acceleration * 1.e3;
+
   for (int ii = 1; ii <= nSteps; ii++) {
     _xv = rungeKutta4(_tt.gpssec(), _xv, step, acc, glo_deriv);
@@ -1207,5 +1208,5 @@
       if ( readDbl(line, pos[1], fieldLen, _agf0 ) ||
            readDbl(line, pos[2], fieldLen, _agf1 ) ||
-           readDbl(line, pos[3], fieldLen, _TOW  ) ) {
+           readDbl(line, pos[3], fieldLen, _TOT  ) ) {
         _checkState = bad;
         return;
@@ -1320,5 +1321,5 @@
     .arg(_agf0, 19, 'e', 12)
     .arg(_agf1, 19, 'e', 12)
-    .arg(_TOW,  19, 'e', 12);
+    .arg(_TOT,  19, 'e', 12);
 
   QString fmt = version < 3.0 ? "   %1%2%3%4\n" : "    %1%2%3%4\n";
Index: /trunk/BNC/src/ephemeris.h
===================================================================
--- /trunk/BNC/src/ephemeris.h	(revision 8455)
+++ /trunk/BNC/src/ephemeris.h	(revision 8456)
@@ -343,5 +343,5 @@
   t_ephSBAS() {
     _IODN           = 0;
-    _TOW            = 0.0;
+    _TOT            = 0.0;
     _agf0           = 0.0;
     _agf1           = 0.0;
@@ -370,5 +370,5 @@
 
   int    _IODN;
-  double _TOW;            // not used (set to  0.9999e9)
+  double _TOT;            // not used (set to  0.9999e9)
   double _agf0;           // [s]    clock correction
   double _agf1;           // [s/s]  clock correction drift
