- Timestamp:
- Mar 30, 2012, 5:17:26 PM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncephuser.cpp
r3751 r3752 239 239 240 240 tRao.set(GPSweek, GPSweeks); 241 242 dClk = 0.0; 243 dotDClk = 0.0; 244 dotDotDClk = 0.0; 245 tClk.reset(); 241 246 } 242 247 else if ( messageType == COTYPE_GPSCLOCK || -
trunk/BNC/bnctime.h
r3557 r3752 15 15 bncTime& setmjd(double daysec, int mjd); 16 16 17 void reset() {_mjd = 0; _sec = 0;} 17 18 unsigned int mjd() const; 18 19 double daysec() const; … … 38 39 39 40 private: 40 void reset() {_mjd = 0; _sec = 0;}41 42 41 unsigned int _mjd; 43 42 double _sec; -
trunk/BNC/rinex/bncpostprocess.cpp
r3748 r3752 117 117 _corrFile = new t_corrFile(_opt->corrFileName); 118 118 connect(_corrFile, SIGNAL(newCorrections(QList<QString>)), 119 _pppClient, SLOT(slotNewCorrections(QList<QString>))); 119 _pppClient, SLOT(slotNewCorrections(QList<QString>)), 120 Qt::DirectConnection); 120 121 } 121 122 -
trunk/BNC/rinex/corrfile.cpp
r3721 r3752 110 110 bncTime tNew(GPSweek, GPSweeks); 111 111 112 if (tNew > =tt) {112 if (tNew > tt) { 113 113 return true; 114 114 }
Note:
See TracChangeset
for help on using the changeset viewer.