diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-09-18 19:28:32 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-09-18 19:28:32 +0200 |
commit | cb1bbf87674c292b9b2f9e445101e93147ca4943 (patch) | |
tree | a9a055b532be73193a7687613191e3ef2b7aa91a /src/webpage.cpp | |
parent | Open links in new tab located near currently active tab (diff) | |
parent | Really fixed 2 commits ago options.. :) (diff) | |
download | rekonq-cb1bbf87674c292b9b2f9e445101e93147ca4943.tar.xz |
Merge branch 'HomePageEmbedded2'
Seems fixed now. WE HAVE HOME PAGE!!
Conflicts:
src/mainview.cpp
Diffstat (limited to 'src/webpage.cpp')
-rw-r--r-- | src/webpage.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp index b33d2cce..697cf448 100644 --- a/src/webpage.cpp +++ b/src/webpage.cpp @@ -42,6 +42,7 @@ #include "cookiejar.h" #include "networkaccessmanager.h" #include "webview.h" +#include "webpluginfactory.h" // KDE Includes #include <KStandardDirs> @@ -73,6 +74,8 @@ WebPage::WebPage(QObject *parent) , m_pressedButtons(Qt::NoButton) , m_requestedUrl() { + setPluginFactory(new WebPluginFactory(this)); + setForwardUnsupportedContent(true); setNetworkAccessManager(Application::networkAccessManager()); |