Skip to content

Commit 15fe55c

Browse files
committedApr 20, 2014
fix warnings
1 parent b7ddf71 commit 15fe55c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎src/mapserver/qgssldconfigparser.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -528,12 +528,12 @@ bool QgsSLDConfigParser::featureInfoFormatSIA2045() const
528528
return false;
529529
}
530530

531-
void QgsSLDConfigParser::drawOverlays( QPainter* p, int dpi, int width, int height ) const
531+
void QgsSLDConfigParser::drawOverlays( QPainter *, int , int, int ) const
532532
{
533533
//todo: fixme
534534
}
535535

536-
void QgsSLDConfigParser::loadLabelSettings( QgsLabelingEngineInterface* lbl )
536+
void QgsSLDConfigParser::loadLabelSettings( QgsLabelingEngineInterface * )
537537
{
538538
//needs to be here?
539539
}
@@ -689,12 +689,12 @@ void QgsSLDConfigParser::printCapabilities( QDomElement& parentElement, QDomDocu
689689
}
690690
}
691691

692-
void QgsSLDConfigParser::setScaleDenominator( double denom )
692+
void QgsSLDConfigParser::setScaleDenominator( double )
693693
{
694694
//soon...
695695
}
696696

697-
void QgsSLDConfigParser::addExternalGMLData( const QString& layerName, QDomDocument* gmlDoc )
697+
void QgsSLDConfigParser::addExternalGMLData( const QString &, QDomDocument * )
698698
{
699699
//soon...
700700
}

‎src/mapserver/qgswmsprojectparser.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ class QgsWMSProjectParser: public QgsWMSConfigParser
6262
void printCapabilities( QDomElement& parentElement, QDomDocument& doc ) const;
6363

6464
//todo: fixme
65-
void setScaleDenominator( double denom ) {}
66-
void addExternalGMLData( const QString& layerName, QDomDocument* gmlDoc ) {}
65+
void setScaleDenominator( double ) {}
66+
void addExternalGMLData( const QString& , QDomDocument* ) {}
6767

6868
QList< QPair< QString, QgsLayerCoordinateTransform > > layerCoordinateTransforms() const;
6969

0 commit comments

Comments
 (0)
Please sign in to comment.