Changeset 48246 in webkit


Ignore:
Timestamp:
Sep 9, 2009 11:58:00 PM (15 years ago)
Author:
Simon Hausmann
Message:

Call the right base class function QGraphicsWidget::event() instead
of skipping it and using QObject::event() instead.

Patch by Simon Hausmann <Simon Hausmann> on 2009-09-09
Reviewed by Tor Arne Vestbø.

  • Api/qwebgraphicsitem.cpp:

(QWebGraphicsItem::event):

Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/Api/qwebgraphicsitem.cpp

    r48223 r48246  
    176176{
    177177    // Re-implemented in order to allows fixing event-related bugs in patch releases.
    178     return QObject::event(event);
     178    return QGraphicsWidget::event(event);
    179179}
    180180
  • trunk/WebKit/qt/ChangeLog

    r48223 r48246  
     12009-09-09  Simon Hausmann  <hausmann@webkit.org>
     2
     3        Reviewed by Tor Arne Vestbø.
     4
     5        Call the right base class function QGraphicsWidget::event() instead
     6        of skipping it and using QObject::event() instead.
     7
     8        * Api/qwebgraphicsitem.cpp:
     9        (QWebGraphicsItem::event):
     10
    1112009-09-09  Kenneth Rohde Christiansen  <kenneth@webkit.org>
    212
Note: See TracChangeset for help on using the changeset viewer.