Changeset 82243 in webkit


Ignore:
Timestamp:
Mar 29, 2011 6:33:00 AM (13 years ago)
Author:
alexis.menard@openbossa.org
Message:

2011-03-29 Alexis Menard <alexis.menard@openbossa.org>

Unreviewed build fix for build-webkit -minimal.

Breakage introduced by http://trac.webkit.org/changeset/82238.
The minimal option has no support for shortcuts.

  • WebCoreSupport/EditorClientQt.cpp: (WebCore::EditorClientQt::handleInputMethodKeydown):
Location:
trunk/Source/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/qt/ChangeLog

    r82238 r82243  
     12011-03-29  Alexis Menard  <alexis.menard@openbossa.org>
     2
     3        Unreviewed build fix for build-webkit -minimal.
     4
     5        Breakage introduced by http://trac.webkit.org/changeset/82238.
     6        The minimal option has no support for shortcuts.
     7
     8        * WebCoreSupport/EditorClientQt.cpp:
     9        (WebCore::EditorClientQt::handleInputMethodKeydown):
     10
    1112011-03-29  Janne Koskinen  <janne.p.koskinen@digia.com>
    212
  • trunk/Source/WebKit/qt/WebCoreSupport/EditorClientQt.cpp

    r82238 r82243  
    533533void EditorClientQt::handleInputMethodKeydown(KeyboardEvent* event)
    534534{
     535#ifndef QT_NO_SHORTCUT
    535536    const PlatformKeyboardEvent* kevent = event->keyEvent();
    536537    if (kevent->type() == PlatformKeyboardEvent::RawKeyDown) {
     
    545546        }
    546547    }
     548#endif
    547549}
    548550
Note: See TracChangeset for help on using the changeset viewer.