[Qt] [WK2] Fix build after r95982
authorcaio.oliveira@openbossa.org <caio.oliveira@openbossa.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 27 Sep 2011 00:35:41 +0000 (00:35 +0000)
committercaio.oliveira@openbossa.org <caio.oliveira@openbossa.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 27 Sep 2011 00:35:41 +0000 (00:35 +0000)
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
Source/WebKit2/UIProcess/qt/qtouchwebpageproxy.cpp

index 62d3844..f3f00af 100644 (file)
@@ -1,3 +1,17 @@
+2011-09-26  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
+
+        [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  <ap@apple.com>
 
         REGRESSION (r95747): Activating the web inspector causes the web process to be killed
index a8eb4b6..c2921af 100644 (file)
@@ -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)