diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2009-09-30 13:55:29 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2009-10-01 08:29:27 (GMT) |
commit | d6cb9ed0b44118c7f9045559a300ea14985f0103 (patch) | |
tree | 998dc714d8efaa4e2b5e3a19acac441546c2259f /src/gui/kernel | |
parent | 9c0b1db38f7ad8b6b0d51410033854be72146e74 (diff) | |
download | Qt-d6cb9ed0b44118c7f9045559a300ea14985f0103.zip Qt-d6cb9ed0b44118c7f9045559a300ea14985f0103.tar.gz Qt-d6cb9ed0b44118c7f9045559a300ea14985f0103.tar.bz2 |
Fix warnings on mingw
Reviewed-by: trust me
Diffstat (limited to 'src/gui/kernel')
-rw-r--r-- | src/gui/kernel/qsoftkeymanager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/kernel/qsoftkeymanager.cpp b/src/gui/kernel/qsoftkeymanager.cpp index 45695d9..265f971 100644 --- a/src/gui/kernel/qsoftkeymanager.cpp +++ b/src/gui/kernel/qsoftkeymanager.cpp @@ -121,6 +121,7 @@ QAction *QSoftKeyManager::createAction(StandardSoftKey standardKey, QWidget *act softKeyRole = QAction::PositiveSoftKey; break; case CancelSoftKey: + default: softKeyRole = QAction::NegativeSoftKey; break; } |