mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-02 13:04:42 +01:00
17 lines
779 B
Diff
17 lines
779 B
Diff
|
diff --git a/src/webpage.cpp b/src/webpage.cpp
|
||
|
index a63940b..ea2add6 100644
|
||
|
--- a/src/webpage.cpp
|
||
|
+++ b/src/webpage.cpp
|
||
|
@@ -577,8 +577,8 @@ QString WebPage::errorPage(QNetworkReply *reply)
|
||
|
return QString("Couldn't open the rekonqinfo.html file");
|
||
|
}
|
||
|
|
||
|
- QString title = i18n("Error loading: %1", reply->url().toString());
|
||
|
- QString urlString = reply->url().toString(QUrl::RemoveUserInfo | QUrl::RemoveQuery);
|
||
|
+ QString title = i18n("There was a problem while loading the page");
|
||
|
+ QString urlString = reply->url().toString(QUrl::RemoveUserInfo | QUrl::RemoveQuery | QUrl::RemovePath);
|
||
|
|
||
|
QString iconPath = QString("file://") + KIconLoader::global()->iconPath("dialog-warning" , KIconLoader::Small);
|
||
|
iconPath.replace(QL1S("16"), QL1S("128"));
|
||
|
|