Skip to content

Commit

Permalink
fix debug build for Qt <4.7
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@15775 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Apr 20, 2011
1 parent 2c735e5 commit 2d7de78
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/providers/wms/qgswmsprovider.cpp
Expand Up @@ -724,8 +724,9 @@ void QgsWmsProvider::tileReplyFinished()
mCacheHits++;
else
mCacheMisses++;

QgsDebugMsgLevel( "headers:", 3 );
#endif
#if defined(QGISDEBUG) && (QT_VERSION >= 0x40700)
QgsDebugMsgLevel( "raw headers:", 3 );
foreach( const QNetworkReply::RawHeaderPair &pair, reply->rawHeaderPairs() )
{
QgsDebugMsgLevel( QString( " %1:%2" )
Expand Down

0 comments on commit 2d7de78

Please sign in to comment.