diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2013-01-23 17:37:54 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2013-01-23 17:37:54 +0100 |
commit | 508540644f1abd8728633f0678a748a7c3c94c22 (patch) | |
tree | 0d64a7a28239b2c202ddd6afe095ca7e066bcd2b /src/webwindow/webwindow.cpp | |
parent | Fixes javascript error for word replacement from the spellcheck popup menu. (diff) | |
download | rekonq-508540644f1abd8728633f0678a748a7c3c94c22.tar.xz |
Remove double "rekonq - rekonq" from title
Diffstat (limited to 'src/webwindow/webwindow.cpp')
-rw-r--r-- | src/webwindow/webwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webwindow/webwindow.cpp b/src/webwindow/webwindow.cpp index d512620d..33cb6142 100644 --- a/src/webwindow/webwindow.cpp +++ b/src/webwindow/webwindow.cpp @@ -673,7 +673,7 @@ QString WebWindow::title() const if (url().isLocalFile()) return url().fileName(); else - return QL1S("rekonq"); + return url().prettyUrl(); } return t; |