diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2013-02-17 15:50:07 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2013-02-17 15:50:07 +0100 |
commit | 3fa0d8f76df9fa2800efa06fd5f44c8bbeb1a446 (patch) | |
tree | 5e77cb9d81a6aaf1fd0b62516e483cde4302bf2a | |
parent | Nepomuk-core has it's own versioning and does not follow the KDE SC version (diff) | |
download | rekonq-3fa0d8f76df9fa2800efa06fd5f44c8bbeb1a446.tar.xz |
Fix about pages title
-rw-r--r-- | src/webtab/webtab.cpp | 3 |
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(); |