Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
|
@@ -460,7 +460,7 @@ int QgsGrassRasterProvider::yBlockSize() const |
|
|
int QgsGrassRasterProvider::xSize() const { return mCols; } |
|
|
int QgsGrassRasterProvider::ySize() const { return mRows; } |
|
|
|
|
|
QgsRasterIdentifyResult QgsGrassRasterProvider::identify( const QgsPoint & thePoint, QgsRaster::IdentifyFormat theFormat, const QgsRectangle &theExtent, int theWidth, int theHeight ) |
|
|
QgsRasterIdentifyResult QgsGrassRasterProvider::identify( const QgsPoint & thePoint, QgsRaster::IdentifyFormat theFormat, const QgsRectangle &theExtent, int theWidth, int theHeight, int /*theDpi*/ ) |
|
|
{ |
|
|
Q_UNUSED( theExtent ); |
|
|
Q_UNUSED( theWidth ); |
|
|
|
@@ -148,7 +148,7 @@ class GRASS_LIB_EXPORT QgsGrassRasterProvider : public QgsRasterDataProvider |
|
|
*/ |
|
|
bool isValid() override; |
|
|
|
|
|
QgsRasterIdentifyResult identify( const QgsPoint & thePoint, QgsRaster::IdentifyFormat theFormat, const QgsRectangle &theExtent = QgsRectangle(), int theWidth = 0, int theHeight = 0 ) override; |
|
|
QgsRasterIdentifyResult identify( const QgsPoint & thePoint, QgsRaster::IdentifyFormat theFormat, const QgsRectangle &theExtent = QgsRectangle(), int theWidth = 0, int theHeight = 0, int theDpi = 96 ) override; |
|
|
|
|
|
/** |
|
|
* \brief Returns the caption error text for the last error in this provider |
|
|