diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-05-23 01:42:26 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-05-23 01:42:26 +0200 |
commit | ca917ecc5a7b3fc69fcb5682466c421d56627aec (patch) | |
tree | eb014ca7175788a4eac587f4e59f28b4ea0c90fa /src/webpage.cpp | |
parent | splitted web classes (diff) | |
download | rekonq-ca917ecc5a7b3fc69fcb5682466c421d56627aec.tar.xz |
Initial kdewebkit porting. STEP 1 DONE
Diffstat (limited to 'src/webpage.cpp')
-rw-r--r-- | src/webpage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp index 5fae4be3..51a02771 100644 --- a/src/webpage.cpp +++ b/src/webpage.cpp @@ -147,7 +147,7 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r { webView = Application::instance()->newWebView(); webView->setFocus(); -// webView->load(request); FIXME NOW!! + webView->load(request.url()); m_keyboardModifiers = Qt::NoModifier; m_pressedButtons = Qt::NoButton; return false; @@ -165,7 +165,7 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r { webView = Application::instance()->newWebView(); webView->setFocus(); -// webView->load(request); FIXME NOW!! + webView->load(request.url()); return false; } } |