Changeset 8204 in ntrip for trunk/BNC/src/latencychecker.cpp


Ignore:
Timestamp:
Dec 11, 2017, 3:00:40 PM (7 years ago)
Author:
wiese
Message:

CHANGE: #105 toAscii deprecated

File:
1 edited

Legend:

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

    r8156 r8204  
    178178      _begTimeOut = _endDateTimeOut.toUTC().time().toString("hh:mm:ss");
    179179      emit(newMessage((_staID + ": Failure threshold exceeded, outage since "
    180                     + _begDateOut + " " + _begTimeOut + " UTC").toAscii(), true));
     180                    + _begDateOut + " " + _begTimeOut + " UTC").toLatin1(), true));
    181181      callScript(("Begin_Outage "
    182                     + _begDateOut + " " + _begTimeOut + " UTC").toAscii());
     182                    + _begDateOut + " " + _begTimeOut + " UTC").toLatin1());
    183183      _decodeStop.setDate(QDate());
    184184      _decodeStop.setTime(QTime());
     
    257257          _begTimeCorr = _endDateTimeCorr.toUTC().time().toString("hh:mm:ss");
    258258          emit(newMessage((_staID + ": Failure threshold exceeded, corrupted since "
    259                     + _begDateCorr + " " + _begTimeCorr + " UTC").toAscii(), true));
     259                    + _begDateCorr + " " + _begTimeCorr + " UTC").toLatin1(), true));
    260260          callScript(("Begin_Corrupted "
    261                     + _begDateCorr + " " + _begTimeCorr + " UTC").toAscii());
     261                    + _begDateCorr + " " + _begTimeCorr + " UTC").toLatin1());
    262262          _secSucc = 0;
    263263          _numSucc = 0;
     
    277277            _endTimeCorr = _begDateTimeCorr.toUTC().time().toString("hh:mm:ss");
    278278            emit(newMessage((_staID + ": Recovery threshold exceeded, corruption ended "
    279                         + _endDateCorr + " " + _endTimeCorr + " UTC").toAscii(), true));
     279                        + _endDateCorr + " " + _endTimeCorr + " UTC").toLatin1(), true));
    280280            callScript(("End_Corrupted "
    281281                        + _endDateCorr + " " + _endTimeCorr + " UTC Begin was "
    282                         + _begDateCorr + " " + _begTimeCorr + " UTC").toAscii());
     282                        + _begDateCorr + " " + _begTimeCorr + " UTC").toLatin1());
    283283            _decodeStartCorr.setDate(QDate());
    284284            _decodeStartCorr.setTime(QTime());
     
    305305      _endTimeOut = _begDateTimeOut.toUTC().time().toString("hh:mm:ss");
    306306      emit(newMessage((_staID + ": Recovery threshold exceeded, outage ended "
    307                     + _endDateOut + " " + _endTimeOut + " UTC").toAscii(), true));
     307                    + _endDateOut + " " + _endTimeOut + " UTC").toLatin1(), true));
    308308      callScript(("End_Outage "
    309309                    + _endDateOut + " " + _endTimeOut + " UTC Begin was "
    310                     + _begDateOut + " " + _begTimeOut + " UTC").toAscii());
     310                    + _begDateOut + " " + _begTimeOut + " UTC").toLatin1());
    311311      _decodeStart.setDate(QDate());
    312312      _decodeStart.setTime(QTime());
     
    341341                  .arg(l._numLat)
    342342                  .arg(l._numGaps)
    343                   .toAscii(), true) );
     343                  .toLatin1(), true) );
    344344              }
    345345            } else {
     
    353353                  .arg(int((sqrt((l._sumLatQ - l._sumLat * l._sumLat / l._numLat)/l._numLat))*100)/100.)
    354354                  .arg(l._numLat)
    355                   .toAscii(), true) );
     355                  .toLatin1(), true) );
    356356              }
    357357            }
     
    466466            .arg(l._numGaps);
    467467            if ( _checkMountPoint == _staID || _checkMountPoint == "ALL" ) {
    468               emit(newMessage(QString(_staID + late ).toAscii(), true) );
     468              emit(newMessage(QString(_staID + late ).toLatin1(), true) );
    469469            }
    470470          }
     
    478478            .arg(l._numLat);
    479479            if ( _checkMountPoint == _staID || _checkMountPoint == "ALL" ) {
    480             emit(newMessage(QString(_staID + late ).toAscii(), true) );
     480            emit(newMessage(QString(_staID + late ).toLatin1(), true) );
    481481            }
    482482          }
Note: See TracChangeset for help on using the changeset viewer.