Skip to content

Commit

Permalink
[grass] Fix build for metadata->htmlMetadata
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Nov 21, 2017
1 parent ea7c2af commit 5be5c1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/providers/grass/qgsgrassrasterprovider.cpp
Expand Up @@ -502,7 +502,7 @@ int QgsGrassRasterProvider::colorInterpretation( int bandNo ) const
return QgsRaster::GrayIndex; return QgsRaster::GrayIndex;
} }


QString QgsGrassRasterProvider::metadata() QString QgsGrassRasterProvider::htmlMetadata()
{ {
QString myMetadata; QString myMetadata;
QStringList myList; QStringList myList;
Expand Down
2 changes: 1 addition & 1 deletion src/providers/grass/qgsgrassrasterprovider.h
Expand Up @@ -205,7 +205,7 @@ class GRASS_LIB_EXPORT QgsGrassRasterProvider : public QgsRasterDataProvider
* Get metadata in a format suitable for feeding directly * Get metadata in a format suitable for feeding directly
* into a subset of the GUI raster properties "Metadata" tab. * into a subset of the GUI raster properties "Metadata" tab.
*/ */
QString metadata() override; QString htmlMetadata() override;


virtual QDateTime dataTimestamp() const override; virtual QDateTime dataTimestamp() const override;


Expand Down

1 comment on commit 5be5c1e

@Gustry
Copy link
Contributor

@Gustry Gustry commented on 5be5c1e Nov 21, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @elpaso
I don't have grass to notice this error and QTCreator didn't see this one too

Please sign in to comment.