Bug 30042 - [Qt] windowsKeyCodeForKeyEvent() returns a wrong value for the F10 key.
Summary: [Qt] windowsKeyCodeForKeyEvent() returns a wrong value for the F10 key.
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Platform (show other bugs)
Version: 528+ (Nightly build)
Hardware: Other OS X 10.5
: P2 Normal
Assignee: Nobody
URL:
Keywords: Qt
Depends on:
Blocks:
 
Reported: 2009-10-03 07:08 PDT by Jakub Wieczorek
Modified: 2009-10-05 03:59 PDT (History)
1 user (show)

See Also:


Attachments
patch (1.58 KB, patch)
2009-10-03 07:10 PDT, Jakub Wieczorek
vestbo: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Jakub Wieczorek 2009-10-03 07:08:27 PDT
From PlatformKeyboardEventQt.cpp:

case Qt::Key_F8:
    return VK_F8;
case Qt::Key_F9:
    return VK_F9;
case Qt::Key_F10:
    return VK_F11;
case Qt::Key_F11:
    return VK_F11;
case Qt::Key_F12:
    return VK_F12;
Comment 1 Jakub Wieczorek 2009-10-03 07:10:56 PDT
Created attachment 40570 [details]
patch
Comment 2 Tor Arne Vestbø 2009-10-05 03:59:36 PDT
Landed in r49089