Changeset 9383 in ntrip for trunk/BNC/qwt/qwt_scale_draw.h


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_draw.h

    r8127 r9383  
    3636        \sa setAlignment(), alignment()
    3737     */
    38     enum Alignment 
    39     { 
     38    enum Alignment
     39    {
    4040        //! The scale is below
    41         BottomScale, 
     41        BottomScale,
    4242
    4343        //! The scale is above
    44         TopScale, 
     44        TopScale,
    4545
    4646        //! The scale is left
    47         LeftScale, 
     47        LeftScale,
    4848
    4949        //! The scale is right
    50         RightScale 
     50        RightScale
    5151    };
    5252
     
    8181    int maxLabelWidth( const QFont & ) const;
    8282
    83     QPointF labelPosition( double val ) const;
     83    QPointF labelPosition( double value ) const;
    8484
    85     QRectF labelRect( const QFont &, double val ) const;
    86     QSizeF labelSize( const QFont &, double val ) const;
     85    QRectF labelRect( const QFont &, double value ) const;
     86    QSizeF labelSize( const QFont &, double value ) const;
    8787
    88     QRect boundingLabelRect( const QFont &, double val ) const;
     88    QRect boundingLabelRect( const QFont &, double value ) const;
    8989
    9090protected:
    9191    QTransform labelTransformation( const QPointF &, const QSizeF & ) const;
    9292
    93     virtual void drawTick( QPainter *, double val, double len ) const;
     93    virtual void drawTick( QPainter *, double value, double len ) const;
    9494    virtual void drawBackbone( QPainter * ) const;
    95     virtual void drawLabel( QPainter *, double val ) const;
     95    virtual void drawLabel( QPainter *, double value ) const;
    9696
    9797private:
Note: See TracChangeset for help on using the changeset viewer.