diff options
author | Joerg Bornemann <joerg.bornemann@nokia.com> | 2009-08-25 06:10:44 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@nokia.com> | 2009-08-25 06:37:09 (GMT) |
commit | 2e6c1f12babf1d36d1aa80bce7baeadc0e651cda (patch) | |
tree | 9e708fe861c3a4d237a0fdbc3ed910aa64d51b27 /src/gui/kernel/qapplication_win.cpp | |
parent | e1309dcfe2b61beb7c3ab23a0250382043dc9168 (diff) | |
download | Qt-2e6c1f12babf1d36d1aa80bce7baeadc0e651cda.zip Qt-2e6c1f12babf1d36d1aa80bce7baeadc0e651cda.tar.gz Qt-2e6c1f12babf1d36d1aa80bce7baeadc0e651cda.tar.bz2 |
unneeded WINVER check in qapplication_win.cpp removed
Reviewed-by: TrustMe
Diffstat (limited to 'src/gui/kernel/qapplication_win.cpp')
-rw-r--r-- | src/gui/kernel/qapplication_win.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gui/kernel/qapplication_win.cpp b/src/gui/kernel/qapplication_win.cpp index b2cde4d..76a3b1e 100644 --- a/src/gui/kernel/qapplication_win.cpp +++ b/src/gui/kernel/qapplication_win.cpp @@ -1808,7 +1808,6 @@ LRESULT CALLBACK QtWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam case APPCOMMAND_VOLUME_UP: key = Qt::Key_VolumeUp; break; -#if defined(WINVER) && WINVER >= 0x0501 // Commands new in Windows XP case APPCOMMAND_HELP: key = Qt::Key_Help; @@ -1822,7 +1821,6 @@ LRESULT CALLBACK QtWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam case APPCOMMAND_MEDIA_PLAY: key = Qt::Key_MediaPlay; break; -#endif default: break; } |