Changeset 10238 in ntrip for trunk


Ignore:
Timestamp:
Nov 6, 2023, 12:42:30 PM (7 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bnccaster.cpp

    r9958 r10238  
    108108  }
    109109
    110   _outLockTime = settings.value("outLockTime",false).toBool();
     110  _outLockTime        = settings.value("outLockTime",false).toBool();
    111111  _samplingRateMult10 = int(settings.value("outSampl").toString().split("sec").first().toDouble() * 10.0);
    112   _outWait      = settings.value("outWait").toDouble();
     112  _outWait            = settings.value("outWait").toDouble();
    113113  if (_outWait <= 0.0) {
    114114    _outWait = 0.01;
     
    400400  // ----------------------
    401401  _samplingRateMult10 = int(settings.value("outSampl").toString().split("sec").first().toDouble() * 10.0);
    402   _outWait      = settings.value("outWait").toInt();
    403   if (_outWait < 1) {
    404     _outWait = 1;
     402
     403  _outWait = settings.value("outWait").toDouble();
     404  if (_outWait <= 0.0) {
     405    _outWait = 0.01;
    405406  }
    406407
Note: See TracChangeset for help on using the changeset viewer.