summaryrefslogtreecommitdiff
path: root/src/application.cpp
diff options
context:
space:
mode:
authorLionel Chauvin <megabigbug@yahoo.fr>2009-08-06 23:54:29 +0200
committerLionel Chauvin <megabigbug@yahoo.fr>2009-08-06 23:54:29 +0200
commit884edbec208a339676aa41e631bf8aa000ce55f6 (patch)
tree5fc66e25728097eed104920e2e797828bddc91f5 /src/application.cpp
parentDebug info from setWindowID (diff)
downloadrekonq-884edbec208a339676aa41e631bf8aa000ce55f6.tar.xz
fix loadUrl for query with accents (eg: églantine)
Diffstat (limited to 'src/application.cpp')
-rw-r--r--src/application.cpp2
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");
}
}