Skip to content

Commit f13104b

Browse files
committedDec 8, 2015
Fix doxygen warnings
1 parent 8cac364 commit f13104b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎src/core/qgsrectangle.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ QgsRectangle::QgsRectangle( double newxmin, double newymin, double newxmax, doub
3535
normalize();
3636
}
3737

38-
QgsRectangle::QgsRectangle( QgsPoint const & p1, QgsPoint const & p2 )
38+
QgsRectangle::QgsRectangle( const QgsPoint& p1, const QgsPoint& p2 )
3939
{
4040
set( p1, p2 );
4141
}

‎src/core/raster/qgsrasterlayer.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ QgsRasterLayer::QgsRasterLayer()
8989
}
9090

9191
QgsRasterLayer::QgsRasterLayer(
92-
QString const & path,
93-
QString const & baseName,
92+
const QString& path,
93+
const QString& baseName,
9494
bool loadDefaultStyleFlag )
9595
: QgsMapLayer( RasterLayer, baseName, path )
9696
, QSTRING_NOT_SET( "Not Set" )
@@ -167,7 +167,7 @@ QgsRasterLayer::~QgsRasterLayer()
167167
/**
168168
* This helper checks to see whether the file name appears to be a valid raster file name
169169
*/
170-
bool QgsRasterLayer::isValidRasterFileName( QString const & theFileNameQString, QString & retErrMsg )
170+
bool QgsRasterLayer::isValidRasterFileName( const QString& theFileNameQString, QString& retErrMsg )
171171
{
172172
isvalidrasterfilename_t *pValid = ( isvalidrasterfilename_t * ) cast_to_fptr( QgsProviderRegistry::instance()->function( "gdal", "isValidRasterFileName" ) );
173173
if ( ! pValid )

0 commit comments

Comments
 (0)
Please sign in to comment.