summaryrefslogtreecommitdiff
path: root/src/mainview.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-07-24 10:32:27 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-07-24 10:32:27 +0200
commit8133bde2b48b8a9881812e9d04e58ae41697698f (patch)
treee1c36a2fd06ce8068212b13ca51f3658c875e680 /src/mainview.cpp
parentrekonq 0.1.10 with last news. (diff)
downloadrekonq-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.cpp2
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)));