Changeset 9383 in ntrip for trunk/BNC/qwt/qwt_plot_grid.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_plot_grid.h

    r8127 r9383  
    4040    virtual int rtti() const;
    4141
    42     void enableX( bool tf );
     42    void enableX( bool );
    4343    bool xEnabled() const;
    4444
    45     void enableY( bool tf );
     45    void enableY( bool );
    4646    bool yEnabled() const;
    4747
    48     void enableXMin( bool tf );
     48    void enableXMin( bool );
    4949    bool xMinEnabled() const;
    5050
    51     void enableYMin( bool tf );
     51    void enableYMin( bool );
    5252    bool yMinEnabled() const;
    5353
    54     void setXDiv( const QwtScaleDiv &sx );
     54    void setXDiv( const QwtScaleDiv & );
    5555    const QwtScaleDiv &xScaleDiv() const;
    5656
    57     void setYDiv( const QwtScaleDiv &sy );
     57    void setYDiv( const QwtScaleDiv & );
    5858    const QwtScaleDiv &yScaleDiv() const;
    5959
     
    6666
    6767    void setMinorPen( const QColor &, qreal width = 0.0, Qt::PenStyle = Qt::SolidLine );
    68     void setMinorPen( const QPen &p );
     68    void setMinorPen( const QPen & );
    6969    const QPen& minorPen() const;
    7070
    71     virtual void draw( QPainter *p,
     71    virtual void draw( QPainter *,
    7272        const QwtScaleMap &xMap, const QwtScaleMap &yMap,
    73         const QRectF &rect ) const;
     73        const QRectF &canvasRect ) const;
    7474
    75     virtual void updateScaleDiv( 
    76         const QwtScaleDiv &xMap, const QwtScaleDiv &yMap );
     75    virtual void updateScaleDiv(
     76        const QwtScaleDiv &xScaleDiv, const QwtScaleDiv &yScaleDiv );
    7777
    7878private:
    79     void drawLines( QPainter *painter, const QRectF &,
    80         Qt::Orientation orientation, const QwtScaleMap &,
     79    void drawLines( QPainter *, const QRectF &,
     80        Qt::Orientation, const QwtScaleMap &,
    8181        const QList<double> & ) const;
    8282
Note: See TracChangeset for help on using the changeset viewer.