diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-07-24 10:32:27 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-07-24 10:32:27 +0200 |
commit | 8133bde2b48b8a9881812e9d04e58ae41697698f (patch) | |
tree | e1c36a2fd06ce8068212b13ca51f3658c875e680 /src/mainview.cpp | |
parent | rekonq 0.1.10 with last news. (diff) | |
download | rekonq-8133bde2b48b8a9881812e9d04e58ae41697698f.tar.xz |
Trivial fix. Yesterday was late night ;)
This patch lets rekonq to load url in.. the current page instead of
loading infinite new tabs... :)
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 74fff11b..c0d8591a 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -359,7 +359,7 @@ WebView *MainView::newTab() connect(urlBar, SIGNAL(activated(const KUrl&)), Application::instance(), SLOT(loadUrl(const KUrl&))); m_urlBars->addUrlBar(urlBar); - WebView *webView = new WebView; // should be deleted on tab close + WebView *webView = new WebView; // should be deleted on tab close? // connecting webview with urlbar connect(webView, SIGNAL(loadProgress(int)), urlBar, SLOT(slotUpdateProgress(int))); |