Skip to content

Commit 281bae7

Browse files
author
jef
committedJun 8, 2010

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎src/providers/wms/qgswmsprovider.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,8 @@ QImage *QgsWmsProvider::draw( QgsRectangle const &viewExtent, int pixelWidth, i
518518
connect( cacheReply, SIGNAL( finished() ), this, SLOT( cacheReplyFinished() ) );
519519
connect( cacheReply, SIGNAL( downloadProgress( qint64, qint64 ) ), this, SLOT( cacheReplyProgress( qint64, qint64 ) ) );
520520

521+
emit statusChanged( tr( "Getting map via WMS." ) );
522+
521523
mWaiting = true;
522524

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

651+
emit statusChanged( tr( "Getting tiles via WMS." ) );
652+
649653
mWaiting = true;
650654

651655
QTime t;

0 commit comments

Comments
 (0)
Please sign in to comment.