diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-08-07 11:31:44 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-08-07 11:31:44 +0200 |
commit | 7af837618333176db47e346c3eb8275a4698b757 (patch) | |
tree | 7cb498a4d97d6eaece8785e08fcd86bd5cf9bbd6 | |
parent | Remove a dot after the URL from the message, to avoid confusion (diff) | |
parent | fix loadUrl for query with accents (eg: églantine) (diff) | |
download | rekonq-7af837618333176db47e346c3eb8275a4698b757.tar.xz |
Merge commit 'megabigbug/query'
-rw-r--r-- | src/application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application.cpp b/src/application.cpp index 502a6aed..98b8d870 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -284,7 +284,7 @@ void Application::loadUrl(const KUrl& url, const Rekonq::OpenType& type) } else { - loadingUrl.setUrl(fn); + loadingUrl.setUrl(url.fileName()); loadingUrl.setScheme("gg"); } } |