diff options
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/application.cpp b/src/application.cpp index e83a59bb..e06f6f15 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -309,7 +309,7 @@ void Application::loadUrl(const KUrl& url, const Rekonq::OpenType& type) // the beautiful KDE web browsing shortcuts KUriFilterData data(loadingUrl.pathOrUrl()); data.setCheckForExecutables(false); // if true, queries like "rekonq" or "dolphin" are considered as executables - loadingUrl = KUriFilter::self()->filterUri(data) ? data.uri().url() : QUrl::fromUserInput(loadingUrl.pathOrUrl()); + loadingUrl = KUriFilter::self()->filterUri(data) ? data.uri().pathOrUrl() : QUrl::fromUserInput(loadingUrl.pathOrUrl()); // we are sure of the url now, let's add it to history // anyway we store here just http sites because local and ftp ones are @@ -370,4 +370,4 @@ AdBlockManager *Application::adblockManager() } return s_adblockManager; } -
\ No newline at end of file + |