Changeset 96051 in webkit


Ignore:
Timestamp:
Sep 26, 2011 5:35:41 PM (13 years ago)
Author:
caio.oliveira@openbossa.org
Message:

[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):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r96014 r96051  
     12011-09-26  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
     2
     3        [Qt] [WK2] Fix build after r95982
     4        https://bugs.webkit.org/show_bug.cgi?id=68842
     5
     6        Reviewed by Anders Carlsson.
     7
     8        The patch in r95982 removed the paint() function, because it was doing
     9        nothing (in both implementations). This patch remove the call we had
     10        for it to fix the build.
     11
     12        * UIProcess/qt/qtouchwebpageproxy.cpp:
     13        (QTouchWebPageProxy::paintContent):
     14
    1152011-09-26  Alexey Proskuryakov  <ap@apple.com>
    216
  • trunk/Source/WebKit2/UIProcess/qt/qtouchwebpageproxy.cpp

    r95901 r96051  
    5050void QTouchWebPageProxy::paintContent(QPainter* painter, const QRect& area)
    5151{
    52     m_webPageProxy->drawingArea()->paint(IntRect(area), painter);
    5352}
    5453
Note: See TracChangeset for help on using the changeset viewer.