Changeset 70948 in webkit


Ignore:
Timestamp:
Oct 29, 2010 4:24:56 PM (13 years ago)
Author:
andreas.kling@nokia.com
Message:

2010-10-29 Andreas Kling <kling@webkit.org>

Reviewed by Ariya Hidayat.

[Qt] QWebPage's InputMethod event handling calls ShortcutOverride handler too
https://bugs.webkit.org/show_bug.cgi?id=48692

  • Api/qwebpage.cpp: (QWebPage::event): Add missing break statement.
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

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

    r70945 r70948  
    28252825    case QEvent::InputMethod:
    28262826        d->inputMethodEvent(static_cast<QInputMethodEvent*>(ev));
     2827        break;
    28272828    case QEvent::ShortcutOverride:
    28282829        d->shortcutOverrideEvent(static_cast<QKeyEvent*>(ev));
  • trunk/WebKit/qt/ChangeLog

    r70945 r70948  
     12010-10-29  Andreas Kling  <kling@webkit.org>
     2
     3        Reviewed by Ariya Hidayat.
     4
     5        [Qt] QWebPage's InputMethod event handling calls ShortcutOverride handler too
     6        https://bugs.webkit.org/show_bug.cgi?id=48692
     7
     8        * Api/qwebpage.cpp:
     9        (QWebPage::event): Add missing break statement.
     10
    1112010-10-29  Ryosuke Niwa  <rniwa@webkit.org>
    212
Note: See TracChangeset for help on using the changeset viewer.