Changeset 2799 in ntrip


Ignore:
Timestamp:
Dec 14, 2010, 4:21:41 PM (13 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncmodel.cpp

    r2798 r2799  
    204204  _ellBanc.ReSize(3); _ellBanc = 0.0;
    205205
    206   if (_usePhase &&
    207       Qt::CheckState(settings.value("pppGLONASS").toInt()) == Qt::Checked) {
    208     _useGlonass = true;
    209   }
    210   else {
    211     _useGlonass = false;
    212   }
    213 
    214   if ( Qt::CheckState(settings.value("pppGalileo").toInt()) == Qt::Checked) {
    215     _useGalileo = true;
    216   }
    217   else {
    218     _useGalileo = false;
    219   }
    220 
    221206  int nextPar = 0;
    222207  _params.push_back(new bncParam(bncParam::CRD_X,  ++nextPar, ""));
     
    227212    _params.push_back(new bncParam(bncParam::TROPO, ++nextPar, ""));
    228213  }
    229   if (_useGalileo) {
     214  if ( Qt::CheckState(settings.value("pppGalileo").toInt()) == Qt::Checked) {
    230215    _params.push_back(new bncParam(bncParam::GALILEO_OFFSET, ++nextPar, ""));
    231216  }
  • trunk/BNC/bncmodel.h

    r2792 r2799  
    139139  QFile*                _nmeaFile;
    140140  QTextStream*          _nmeaStream;
    141   bool                  _useGlonass;
    142   bool                  _useGalileo;
    143141  QMap<QString, double> _windUpTime;
    144142  QMap<QString, double> _windUpSum;
Note: See TracChangeset for help on using the changeset viewer.