Changeset 9383 in ntrip for trunk/BNC/qwt/qwt_transform.cpp


Ignore:
Timestamp:
Mar 19, 2021, 9:15:03 AM (3 years ago)
Author:
stoecker
Message:

update to qwt verion 6.1.1 to fix build with newer Qt5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/qwt/qwt_transform.cpp

    r8127 r9383  
    1919//! Smallest allowed value for logarithmic scales: 1.0e-150
    2020const double QwtLogTransform::LogMin = 1.0e-150;
    21    
     21
    2222//! Largest allowed value for logarithmic scales: 1.0e150
    2323const double QwtLogTransform::LogMax = 1.0e150;
     
    4343}
    4444
    45 /*! 
     45/*!
    4646  \param value Value to be bounded
    4747  \return value unmodified
     
    6363}
    6464
    65 /*! 
     65/*!
    6666  \param value Value to be transformed
    6767  \return value unmodified
     
    7272}
    7373
    74 /*! 
     74/*!
    7575  \param value Value to be transformed
    7676  \return value unmodified
     
    9898}
    9999
    100 /*! 
     100/*!
    101101  \param value Value to be transformed
    102102  \return log( value )
     
    107107}
    108108
    109 /*! 
     109/*!
    110110  \param value Value to be transformed
    111111  \return exp( value )
     
    116116}
    117117
    118 /*! 
     118/*!
    119119  \param value Value to be bounded
    120120  \return qBound( LogMin, value, LogMax )
     
    146146}
    147147
    148 /*! 
     148/*!
    149149  \param value Value to be transformed
    150150  \return Exponentiation preserving the sign
     
    156156    else
    157157        return qPow( value, 1.0 / d_exponent );
    158    
     158
    159159}
    160160
    161 /*! 
     161/*!
    162162  \param value Value to be transformed
    163163  \return Inverse exponentiation preserving the sign
Note: See TracChangeset for help on using the changeset viewer.