@@ -441,7 +441,7 @@ bool QgsRasterLayer::readFile( QString const & fileName )
441
441
442
442
// Get the layer's projection info and set up the
443
443
// QgsCoordinateTransform for this layer
444
- // NOTE: we must do this before getMetadata is called
444
+ // NOTE: we must do this before metadata is called
445
445
446
446
QString mySourceWkt = getProjectionWkt ();
447
447
@@ -462,7 +462,7 @@ bool QgsRasterLayer::readFile( QString const & fileName )
462
462
// that they match the coordinate system of this layer
463
463
QgsDebugMsg ( " Layer registry has " + QString::number ( QgsMapLayerRegistry::instance ()->count () ) + " layers" );
464
464
465
- getMetadata ();
465
+ metadata ();
466
466
467
467
// Use the affine transform to get geo coordinates for
468
468
// the corners of the raster
@@ -3010,7 +3010,7 @@ void QgsRasterLayer::updateProgress( int theProgress, int theMax )
3010
3010
3011
3011
3012
3012
3013
- // convenience function for building getMetadata () HTML table cells
3013
+ // convenience function for building metadata () HTML table cells
3014
3014
static
3015
3015
QString
3016
3016
makeTableCell_ ( QString const & value )
@@ -3020,7 +3020,7 @@ makeTableCell_( QString const & value )
3020
3020
3021
3021
3022
3022
3023
- // convenience function for building getMetadata () HTML table cells
3023
+ // convenience function for building metadata () HTML table cells
3024
3024
static
3025
3025
QString
3026
3026
makeTableCells_ ( QStringList const & values )
@@ -3061,7 +3061,7 @@ cStringList2Q_( char ** stringList )
3061
3061
3062
3062
3063
3063
3064
- QString QgsRasterLayer::getMetadata ()
3064
+ QString QgsRasterLayer::metadata ()
3065
3065
{
3066
3066
QString myMetadata ;
3067
3067
myMetadata += " <p class=\" glossy\" >" + tr ( " Driver:" ) + " </p>\n " ;
@@ -3081,7 +3081,7 @@ QString QgsRasterLayer::getMetadata()
3081
3081
if ( !mProviderKey .isEmpty () )
3082
3082
{
3083
3083
// Insert provider-specific (e.g. WMS-specific) metadata
3084
- myMetadata += mDataProvider ->getMetadata ();
3084
+ myMetadata += mDataProvider ->metadata ();
3085
3085
}
3086
3086
else
3087
3087
{
0 commit comments