summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2013-02-17 15:50:07 +0100
committerAndrea Diamantini <adjam7@gmail.com>2013-02-17 15:50:07 +0100
commit3fa0d8f76df9fa2800efa06fd5f44c8bbeb1a446 (patch)
tree5e77cb9d81a6aaf1fd0b62516e483cde4302bf2a
parentNepomuk-core has it's own versioning and does not follow the KDE SC version (diff)
downloadrekonq-3fa0d8f76df9fa2800efa06fd5f44c8bbeb1a446.tar.xz
Fix about pages title
-rw-r--r--src/webtab/webtab.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/webtab/webtab.cpp b/src/webtab/webtab.cpp
index 2060ddab..00a3c819 100644
--- a/src/webtab/webtab.cpp
+++ b/src/webtab/webtab.cpp
@@ -178,6 +178,9 @@ KUrl WebTab::url()
QString WebTab::title()
{
+ if (view() && url().protocol() == QL1S("about"))
+ return view()->title();
+
if (page() && page()->isOnRekonqPage())
{
return url().url();