[education/rkward] rkward/windows: Fix signal spelling
Thomas Friedrichsmeier
null at kde.org
Wed Jul 6 22:07:16 BST 2022
Git commit bbda1f92ce2c1f6b21179b185273db7b345a2645 by Thomas Friedrichsmeier.
Committed on 06/07/2022 at 21:07.
Pushed by tfry into branch 'master'.
Fix signal spelling
M +2 -2 rkward/windows/rkhtmlwindow.cpp
https://invent.kde.org/education/rkward/commit/bbda1f92ce2c1f6b21179b185273db7b345a2645
diff --git a/rkward/windows/rkhtmlwindow.cpp b/rkward/windows/rkhtmlwindow.cpp
index 04697a94..5e00e4b3 100644
--- a/rkward/windows/rkhtmlwindow.cpp
+++ b/rkward/windows/rkhtmlwindow.cpp
@@ -720,7 +720,7 @@ bool RKHTMLWindow::openURL (const QUrl &url) {
#if KIO_VERSION < QT_VERSION_CHECK(5,78,0)
connect (job, static_cast<void (KIO::TransferJob::*)(KIO::Job*, const QString&)>(&KIO::TransferJob::mimetype), this, &RKHTMLWindow::mimeTypeDetermined);
#else
- connect (job, &KIO::TransferJob::mimetypeFound, this, &RKHTMLWindow::mimeTypeDetermined);
+ connect (job, &KIO::TransferJob::mimeTypeFound, this, &RKHTMLWindow::mimeTypeDetermined);
#endif
// WORKAROUND. See slot.
connect (job, &KIO::TransferJob::result, this, &RKHTMLWindow::mimeTypeJobFail);
@@ -746,7 +746,7 @@ void RKHTMLWindow::mimeTypeJobFail (KJob* job) {
#if KIO_VERSION < QT_VERSION_CHECK(5,78,0)
connect (secondchance, static_cast<void (KIO::TransferJob::*)(KIO::Job*, const QString&)>(&KIO::TransferJob::mimetype), this, &RKHTMLWindow::mimeTypeDetermined);
#else
- connect (secondchance, &KIO::TransferJob::mimetypeFound, this, &RKHTMLWindow::mimeTypeDetermined);
+ connect (secondchance, &KIO::TransferJob::mimeTypeFound, this, &RKHTMLWindow::mimeTypeDetermined);
#endif
connect (secondchance, &KIO::TransferJob::result, this, &RKHTMLWindow::mimeTypeJobFail2);
}
More information about the rkward-tracker
mailing list