Changeset 2874 in ntrip
- Timestamp:
- Jan 25, 2011, 9:56:39 AM (14 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmodel.cpp
r2862 r2874 421 421 if (x() == 0.0 && y() == 0.0 && z() == 0.0) { 422 422 firstCrd = true; 423 _startTime = QDateTime::currentDateTime();423 _startTime = epoData->tt; 424 424 } 425 425 … … 427 427 // ---------------------------------------------- 428 428 double sigCrdP_used = _sigCrdP; 429 if ( _quickStart > 0.0 && 430 _quickStart > _startTime.secsTo(QDateTime::currentDateTime()) ) { 429 if ( _quickStart > 0.0 && _quickStart > (epoData->tt - _startTime) ) { 431 430 sigCrdP_used = 0.0; 432 431 } -
trunk/BNC/bncmodel.h
r2799 r2874 115 115 const ColumnVector& rRec); 116 116 117 QDateTime _startTime;117 bncTime _startTime; 118 118 119 119 class pppPos {
Note:
See TracChangeset
for help on using the changeset viewer.