Skip to content

Commit da887bc

Browse files
author
Sandro Santilli
committedDec 15, 2014
Initialize pointer members, fix typo
1 parent 138d836 commit da887bc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/providers/wms/qgswmsprovider.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ QgsWmsProvider::QgsWmsProvider( QString const& uri, const QgsWmsCapabilities* ca
9494
, mGetLegendGraphicScale( 0.0 )
9595
, mImageCrs( DEFAULT_LATLON_CRS )
9696
, mCachedImage( 0 )
97+
, mGetLegendGraphicReply( 0 )
98+
, mIdentifyReply( 0 )
9799
, mCachedViewExtent( 0 )
98100
, mExtentDirty( true )
99101
, mTileReqNo( 0 )
@@ -3098,7 +3100,7 @@ void QgsWmsProvider::getLegendGraphicReplyFinished()
30983100
#ifdef QGISDEBUG
30993101
QString filename = QDir::tempPath() + "/GetLegendGraphic.png";
31003102
mGetLegendGraphicImage.save( filename );
3101-
QgsDebugMsg( "saved GetLegendGraphic result in debug ile: " + filename );
3103+
QgsDebugMsg( "saved GetLegendGraphic result in debug file: " + filename );
31023104
#endif
31033105
}
31043106
}

0 commit comments

Comments
 (0)
Please sign in to comment.