Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix #2592
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13694 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jun 8, 2010
1 parent 097b287 commit 281bae7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/providers/wms/qgswmsprovider.cpp
Expand Up @@ -518,6 +518,8 @@ QImage *QgsWmsProvider::draw( QgsRectangle const &viewExtent, int pixelWidth, i
connect( cacheReply, SIGNAL( finished() ), this, SLOT( cacheReplyFinished() ) );
connect( cacheReply, SIGNAL( downloadProgress( qint64, qint64 ) ), this, SLOT( cacheReplyProgress( qint64, qint64 ) ) );

emit statusChanged( tr( "Getting map via WMS." ) );

mWaiting = true;

QTime t;
Expand Down Expand Up @@ -646,6 +648,8 @@ QImage *QgsWmsProvider::draw( QgsRectangle const &viewExtent, int pixelWidth, i
y = y0 + ++j * mTileHeight * tres;
}

emit statusChanged( tr( "Getting tiles via WMS." ) );

mWaiting = true;

QTime t;
Expand Down

0 comments on commit 281bae7

Please sign in to comment.