diff options
author | Panagiotis Papadopoulos <pano_90@gmx.net> | 2009-12-12 19:52:31 +0100 |
---|---|---|
committer | Panagiotis Papadopoulos <pano_90@gmx.net> | 2009-12-12 19:52:31 +0100 |
commit | f53d1718c4ebae3e59ec124a8cce4e4d6eb874c6 (patch) | |
tree | ab6d698891ecf02bcaa741e111563623317da272 /src/mainview.cpp | |
parent | Merge branch 'master' of git://gitorious.org/rekonq/mainline into click-to-fl... (diff) | |
parent | Merge commit 'refs/merge-requests/64' of git://gitorious.org/rekonq/mainline (diff) | |
download | rekonq-f53d1718c4ebae3e59ec124a8cce4e4d6eb874c6.tar.xz |
Merge branch 'master' of git://gitorious.org/rekonq/mainline into click-to-flash-ui
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index d190507e..4437936d 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -547,7 +547,7 @@ void MainView::webViewLoadFinished(bool ok) // KWallet Integration // TODO: Add check for sites exempt from automatic form filling... - if (webView->page()->wallet()) + if (webView && webView->page() && webView->page()->wallet()) { webView->page()->wallet()->fillFormData(webView->page()->mainFrame()); } |