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

    r8127 r9383  
    2828    virtual ~QwtAbstractSeriesStore() {}
    2929
     30#ifndef QWT_PYTHON_WRAPPER
    3031    //! dataChanged() indicates, that the series has been changed.
    3132    virtual void dataChanged() = 0;
     
    4243    //! \return Number of samples
    4344    virtual size_t dataSize() const = 0;
     45#else
     46    // Needed for generating the python bindings, but not for using them !
     47    virtual void dataChanged() {}
     48    virtual void setRectOfInterest( const QRectF & ) {}
     49    virtual QRectF dataRect() const { return  QRectF( 0.0, 0.0, -1.0, -1.0 ); }
     50    virtual size_t dataSize() const { return 0; }
     51#endif
    4452};
    4553
Note: See TracChangeset for help on using the changeset viewer.