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
89
89
90
90
void QgsIdentifyResultsWebView::downloadRequested ( const QNetworkRequest &request )
91
91
{
92
- qDebug () << " Download Requested: " << request.url ();
93
92
handleDownload ( request.url () );
94
93
}
95
94
96
95
void QgsIdentifyResultsWebView::unsupportedContent ( QNetworkReply * reply )
97
96
{
98
- qDebug () << " Unsupported Content: " << reply->url ();
99
97
handleDownload ( reply->url () );
100
98
}
101
99
102
100
void QgsIdentifyResultsWebView::handleDownload ( QUrl url )
103
101
{
104
- qDebug () << " Downloading: " << url;
105
102
if ( ! url.isValid () )
106
103
{
107
104
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 )
127
124
{
128
125
settings.setValue ( DOWNLOADER_LAST_DIR_KEY, QFileInfo ( targetFile ).dir ().absolutePath ( ) );
129
126
// Start the download
130
- qDebug () << " Start the download: " << url;
131
127
new QgsFileDownloader ( url, targetFile );
132
128
}
133
129
}
You can’t perform that action at this time.
0 commit comments