pull/2052/head
srcejon 2024-04-05 21:30:23 +01:00
rodzic c1a2c5cbab
commit 9c1b1ab4f8
2 zmienionych plików z 10 dodań i 2 usunięć

Wyświetl plik

@ -2744,12 +2744,18 @@ void MapGUI::fullScreenRequested(QWebEngineFullScreenRequest fullScreenRequest)
ui->splitter->addWidget(ui->web);
}
}
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
void MapGUI::downloadRequested(QWebEngineDownloadRequest *download)
{
download->accept();
}
#else
void MapGUI::downloadRequested(QWebEngineDownloadItem *download)
{
download->accept();
}
#endif
#endif
void MapGUI::preferenceChanged(int elementType)
{

Wyświetl plik

@ -336,8 +336,10 @@ private slots:
void renderProcessTerminated(QWebEnginePage::RenderProcessTerminationStatus terminationStatus, int exitCode);
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
void loadingChanged(const QWebEngineLoadingInfo &loadingInfo);
#endif
void downloadRequested(QWebEngineDownloadRequest *download);
#else
void downloadRequested(QWebEngineDownloadItem *download);
#endif
#endif
void statusChanged(QQuickWidget::Status status);
void preferenceChanged(int elementType);