diff options
author | axis <qt-info@nokia.com> | 2009-07-09 15:59:48 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-07-09 15:59:48 (GMT) |
commit | 44f1d4da465b22b280ef958f7a54622c24a7611d (patch) | |
tree | 89f19395f79735f30946b4dd33b4e156fe8022f2 /src/gui/kernel/qapplication.cpp | |
parent | 3b1e30bb1d6651a626aba1f6b8883f5524598ed3 (diff) | |
download | Qt-44f1d4da465b22b280ef958f7a54622c24a7611d.zip Qt-44f1d4da465b22b280ef958f7a54622c24a7611d.tar.gz Qt-44f1d4da465b22b280ef958f7a54622c24a7611d.tar.bz2 |
Added key sequences for Symbian.
It's probably not complete, and most of them were found by trial and
error, so feel free to fix any issues.
Diffstat (limited to 'src/gui/kernel/qapplication.cpp')
-rw-r--r-- | src/gui/kernel/qapplication.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp index 01e0831..a7b4c95 100644 --- a/src/gui/kernel/qapplication.cpp +++ b/src/gui/kernel/qapplication.cpp @@ -5049,6 +5049,8 @@ uint QApplicationPrivate::currentPlatform(){ platform |= KB_Gnome; if (X11->desktopEnvironment == DE_CDE) platform |= KB_CDE; +#elif defined(Q_WS_S60) + platform = KB_S60; #endif return platform; } |