summaryrefslogtreecommitdiff
path: root/src/urlbar.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-11-03 16:19:53 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-11-03 16:19:53 +0100
commite34963f2365d6352b8d1bc0761697cc0df5dd5ff (patch)
tree0888f25651088fb00d4a84c7bf5c64278df9c20e /src/urlbar.cpp
parentFinally... unit tests!! (diff)
downloadrekonq-e34963f2365d6352b8d1bc0761697cc0df5dd5ff.tar.xz
Trivial MainView Test
and now we have two.. :)
Diffstat (limited to 'src/urlbar.cpp')
-rw-r--r--src/urlbar.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/urlbar.cpp b/src/urlbar.cpp
index d587fd80..81185409 100644
--- a/src/urlbar.cpp
+++ b/src/urlbar.cpp
@@ -81,6 +81,9 @@ UrlBar::UrlBar(QWidget *parent)
QPalette p = view()->palette();
p.setColor(QPalette::Base, palette().color(QPalette::Base));
view()->setPalette(p);
+
+ // load urls on activated urlbar signal
+ connect(this, SIGNAL(activated(const KUrl&)), Application::instance(), SLOT(loadUrl(const KUrl&)));
}