mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
c296eed454
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
16 lines
779 B
Diff
16 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"));
|
|
|