Skip to content

Commit

Permalink
Doxy
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Oct 31, 2019
1 parent 13e9dd7 commit 8c8d763
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -26,7 +26,7 @@ Bilinear Raster Resampler
%Docstring
Constructor for QgsBilinearRasterResampler.
%End
virtual void resample( const QImage &srcImage, QImage &dstImage );
virtual void resample( const QImage &srcImage, QImage &dstImage ) /Deprecated/;


virtual QImage resampleV2( const QImage &source, const QSize &size );
Expand Down
Expand Up @@ -31,7 +31,7 @@ Constructor for QgsCubicRasterResampler.
virtual QImage resampleV2( const QImage &source, const QSize &size );


virtual void resample( const QImage &srcImage, QImage &dstImage );
virtual void resample( const QImage &srcImage, QImage &dstImage ) /Deprecated/;


virtual QString type() const;
Expand Down
2 changes: 1 addition & 1 deletion src/core/raster/qgsbilinearrasterresampler.h
Expand Up @@ -38,7 +38,7 @@ class CORE_EXPORT QgsBilinearRasterResampler: public QgsRasterResamplerV2
* Constructor for QgsBilinearRasterResampler.
*/
QgsBilinearRasterResampler() = default;
void resample( const QImage &srcImage, QImage &dstImage ) override;
Q_DECL_DEPRECATED void resample( const QImage &srcImage, QImage &dstImage ) override SIP_DEPRECATED;

QImage resampleV2( const QImage &source, const QSize &size ) override;
QString type() const override;
Expand Down
2 changes: 1 addition & 1 deletion src/core/raster/qgscubicrasterresampler.h
Expand Up @@ -41,7 +41,7 @@ class CORE_EXPORT QgsCubicRasterResampler: public QgsRasterResamplerV2

QImage resampleV2( const QImage &source, const QSize &size ) override;

void resample( const QImage &srcImage, QImage &dstImage ) override;
Q_DECL_DEPRECATED void resample( const QImage &srcImage, QImage &dstImage ) override SIP_DEPRECATED;

QString type() const override;

Expand Down

0 comments on commit 8c8d763

Please sign in to comment.