summaryrefslogtreecommitdiff
path: root/src/application.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-10-19 10:52:52 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-10-19 10:52:52 +0200
commit12a94468438eb5c07ea215d6a652795d4b6d07b5 (patch)
treef193423d28b00cb65629f41d20d9b693367edf0b /src/application.cpp
parentMerge commit 'refs/merge-requests/1838' of git://gitorious.org/rekonq/mainlin... (diff)
downloadrekonq-12a94468438eb5c07ea215d6a652795d4b6d07b5.tar.xz
Warning added
Diffstat (limited to 'src/application.cpp')
-rw-r--r--src/application.cpp7
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;