File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -89,19 +89,16 @@ QgsIdentifyResultsWebView::QgsIdentifyResultsWebView( QWidget *parent ) : QgsWeb
8989
9090void QgsIdentifyResultsWebView::downloadRequested ( const QNetworkRequest &request )
9191{
92- qDebug () << " Download Requested: " << request.url ();
9392 handleDownload ( request.url () );
9493}
9594
9695void QgsIdentifyResultsWebView::unsupportedContent ( QNetworkReply * reply )
9796{
98- qDebug () << " Unsupported Content: " << reply->url ();
9997 handleDownload ( reply->url () );
10098}
10199
102100void 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 }
You can’t perform that action at this time.
0 commit comments