Skip to content

Commit 8f67c58

Browse files
committedNov 9, 2016
Removed debug output
1 parent 8b231ec commit 8f67c58

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed
 

‎src/app/qgsidentifyresultsdialog.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,19 +89,16 @@ QgsIdentifyResultsWebView::QgsIdentifyResultsWebView( QWidget *parent ) : QgsWeb
8989

9090
void QgsIdentifyResultsWebView::downloadRequested( const QNetworkRequest &request )
9191
{
92-
qDebug() << "Download Requested: " << request.url();
9392
handleDownload( request.url() );
9493
}
9594

9695
void QgsIdentifyResultsWebView::unsupportedContent( QNetworkReply * reply )
9796
{
98-
qDebug() << "Unsupported Content: " << reply->url();
9997
handleDownload( reply->url() );
10098
}
10199

102100
void QgsIdentifyResultsWebView::handleDownload( QUrl url )
103101
{
104-
qDebug() << "Downloading: " << url;
105102
if ( ! url.isValid() )
106103
{
107104
QMessageBox::warning( this, tr( "Invalid URL" ), tr( "The download URL is not valid: %1" ).arg( url.toString( ) ) );
@@ -127,7 +124,6 @@ void QgsIdentifyResultsWebView::handleDownload( QUrl url )
127124
{
128125
settings.setValue( DOWNLOADER_LAST_DIR_KEY, QFileInfo( targetFile ).dir().absolutePath( ) );
129126
// Start the download
130-
qDebug() << "Start the download: " << url;
131127
new QgsFileDownloader( url, targetFile );
132128
}
133129
}

0 commit comments

Comments
 (0)
Please sign in to comment.