Skip to content

Commit

Permalink
Initialize pointer members, fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro Santilli committed Dec 15, 2014
1 parent 138d836 commit da887bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/providers/wms/qgswmsprovider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ QgsWmsProvider::QgsWmsProvider( QString const& uri, const QgsWmsCapabilities* ca
, mGetLegendGraphicScale( 0.0 )
, mImageCrs( DEFAULT_LATLON_CRS )
, mCachedImage( 0 )
, mGetLegendGraphicReply( 0 )
, mIdentifyReply( 0 )
, mCachedViewExtent( 0 )
, mExtentDirty( true )
, mTileReqNo( 0 )
Expand Down Expand Up @@ -3098,7 +3100,7 @@ void QgsWmsProvider::getLegendGraphicReplyFinished()
#ifdef QGISDEBUG
QString filename = QDir::tempPath() + "/GetLegendGraphic.png";
mGetLegendGraphicImage.save( filename );
QgsDebugMsg( "saved GetLegendGraphic result in debug ile: " + filename );
QgsDebugMsg( "saved GetLegendGraphic result in debug file: " + filename );
#endif
}
}
Expand Down

0 comments on commit da887bc

Please sign in to comment.