summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-03-31 02:24:54 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-03-31 02:24:54 +0200
commitf44c5c0a8883d265256ae943623dfc9680741f30 (patch)
tree90955d248157200cd64a9ce24695b0ff68698f22 /src
parentremoved FIXME (diff)
downloadrekonq-f44c5c0a8883d265256ae943623dfc9680741f30.tar.xz
code fixing
Diffstat (limited to 'src')
-rw-r--r--src/webview.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/webview.cpp b/src/webview.cpp
index 7096d850..1057a5ef 100644
--- a/src/webview.cpp
+++ b/src/webview.cpp
@@ -85,6 +85,8 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r
return false;
}
+ WebView *webView;
+
switch(type)
{
@@ -96,7 +98,7 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r
if(m_keyboardModifiers & Qt::ControlModifier || m_pressedButtons == Qt::MidButton)
{
kWarning() << "ControlModifiers clicked..";
- WebView *webView = Application::instance()->newWebView();
+ webView = Application::instance()->newWebView();
webView->setFocus();
webView->load(request);
m_keyboardModifiers = Qt::NoModifier;
@@ -112,7 +114,7 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r
else
{
kWarning() << "NO Main Frame, creating a new WebView..";
- WebView *webView = Application::instance()->newWebView();
+ webView = Application::instance()->newWebView();
webView->setFocus();
webView->load(request);
return false;