diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-10-19 10:52:52 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-10-19 10:52:52 +0200 |
commit | 12a94468438eb5c07ea215d6a652795d4b6d07b5 (patch) | |
tree | f193423d28b00cb65629f41d20d9b693367edf0b | |
parent | Merge commit 'refs/merge-requests/1838' of git://gitorious.org/rekonq/mainlin... (diff) | |
download | rekonq-12a94468438eb5c07ea215d6a652795d4b6d07b5.tar.xz |
Warning added
-rw-r--r-- | src/application.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/application.cpp b/src/application.cpp index fdc105c9..41fcd515 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -339,6 +339,12 @@ void Application::loadUrl(const KUrl& url, const Rekonq::OpenType& type) return; } + // WARNING this is just a temporary hack waiting for the new "awesome bar" (rekonq 0.4 target) + // and it may not work in all cases. + // Known issues are (add that here to test the awesome bar code): + // - web shortcuts with space separator + // - relative urls + // - ... KUrl loadingUrl(url); if (loadingUrl.isRelative()) @@ -365,6 +371,7 @@ void Application::loadUrl(const KUrl& url, const Rekonq::OpenType& type) { loadingUrl = data.uri().url(); } + // ------------------- END WARNING -------------------------------------- WebView *webView = 0; MainWindow *w = 0; |