From d6c3157ea1cd343271f4ec09111be5a3fe12521b Mon Sep 17 00:00:00 2001 From: "caio.oliveira@openbossa.org" Date: Tue, 27 Sep 2011 00:35:41 +0000 Subject: [PATCH] [Qt] [WK2] Fix build after r95982 https://bugs.webkit.org/show_bug.cgi?id=68842 Reviewed by Anders Carlsson. The patch in r95982 removed the paint() function, because it was doing nothing (in both implementations). This patch remove the call we had for it to fix the build. * UIProcess/qt/qtouchwebpageproxy.cpp: (QTouchWebPageProxy::paintContent): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@96051 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebKit2/ChangeLog | 14 ++++++++++++++ Source/WebKit2/UIProcess/qt/qtouchwebpageproxy.cpp | 1 - 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Source/WebKit2/ChangeLog b/Source/WebKit2/ChangeLog index 62d3844..f3f00af 100644 --- a/Source/WebKit2/ChangeLog +++ b/Source/WebKit2/ChangeLog @@ -1,3 +1,17 @@ +2011-09-26 Caio Marcelo de Oliveira Filho + + [Qt] [WK2] Fix build after r95982 + https://bugs.webkit.org/show_bug.cgi?id=68842 + + Reviewed by Anders Carlsson. + + The patch in r95982 removed the paint() function, because it was doing + nothing (in both implementations). This patch remove the call we had + for it to fix the build. + + * UIProcess/qt/qtouchwebpageproxy.cpp: + (QTouchWebPageProxy::paintContent): + 2011-09-26 Alexey Proskuryakov REGRESSION (r95747): Activating the web inspector causes the web process to be killed diff --git a/Source/WebKit2/UIProcess/qt/qtouchwebpageproxy.cpp b/Source/WebKit2/UIProcess/qt/qtouchwebpageproxy.cpp index a8eb4b6..c2921af 100644 --- a/Source/WebKit2/UIProcess/qt/qtouchwebpageproxy.cpp +++ b/Source/WebKit2/UIProcess/qt/qtouchwebpageproxy.cpp @@ -49,7 +49,6 @@ void QTouchWebPageProxy::processDidCrash() void QTouchWebPageProxy::paintContent(QPainter* painter, const QRect& area) { - m_webPageProxy->drawingArea()->paint(IntRect(area), painter); } #if ENABLE(TOUCH_EVENTS) -- 2.7.4