Changeset 9383 in ntrip for trunk/BNC/qwt/qwt_scale_map.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_scale_map.cpp

    r8127 r9383  
    9494  \param s1 first border
    9595  \param s2 second border
    96   \warning scales might be aligned to 
     96  \warning scales might be aligned to
    9797           transformation depending boundaries
    9898*/
     
    187187    const QwtScaleMap &yMap, const QPointF &pos )
    188188{
    189     return QPointF( 
    190         xMap.invTransform( pos.x() ), 
    191         yMap.invTransform( pos.y() ) 
     189    return QPointF(
     190        xMap.invTransform( pos.x() ),
     191        yMap.invTransform( pos.y() )
    192192    );
    193193}
     
    206206    const QwtScaleMap &yMap, const QPointF &pos )
    207207{
    208     return QPointF( 
    209         xMap.transform( pos.x() ), 
     208    return QPointF(
     209        xMap.transform( pos.x() ),
    210210        yMap.transform( pos.y() )
    211211    );
Note: See TracChangeset for help on using the changeset viewer.