summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets/qcombobox.cpp
diff options
context:
space:
mode:
authorJason Barron <jbarron@trolltech.com>2009-09-19 17:12:10 (GMT)
committerJason Barron <jbarron@trolltech.com>2009-09-21 08:07:39 (GMT)
commit6248dff2c7f3288d675de639abfbbc6c1d618006 (patch)
tree11c8a736b8b2b3a8fd474225cab630370f369d57 /src/gui/widgets/qcombobox.cpp
parent789303e0f80a299eb3cfacc1d84dbdc1d3e4abeb (diff)
downloadQt-6248dff2c7f3288d675de639abfbbc6c1d618006.zip
Qt-6248dff2c7f3288d675de639abfbbc6c1d618006.tar.gz
Qt-6248dff2c7f3288d675de639abfbbc6c1d618006.tar.bz2
Give the soft key functionality it's own macro.
Re-using QT_KEYPAD_NAVIGATION for soft keys is wrong since the two are independant concepts. This puts everything in a new macro called QT_SOFTKEYS_ENABLED. This will also insulate the embedded customers who use keypad navigation from the soft key changes. Reviewed-by: Alessandro Portale
Diffstat (limited to 'src/gui/widgets/qcombobox.cpp')
-rw-r--r--src/gui/widgets/qcombobox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/qcombobox.cpp b/src/gui/widgets/qcombobox.cpp
index 0d710c4..2f79600 100644
--- a/src/gui/widgets/qcombobox.cpp
+++ b/src/gui/widgets/qcombobox.cpp
@@ -402,7 +402,7 @@ QComboBoxPrivateContainer::QComboBoxPrivateContainer(QAbstractItemView *itemView
layout->setSpacing(0);
layout->setMargin(0);
-#ifdef QT_KEYPAD_NAVIGATION
+#ifdef QT_SOFTKEYS_ENABLED
selectAction = QSoftKeyManager::createKeyedAction(QAction::SelectSoftKey, Qt::Key_Select, itemView);
cancelAction = QSoftKeyManager::createKeyedAction(QAction::CancelSoftKey, Qt::Key_Escape, itemView);
addAction(selectAction);
@@ -572,7 +572,7 @@ void QComboBoxPrivateContainer::setItemView(QAbstractItemView *itemView)
connect(view, SIGNAL(destroyed()),
this, SLOT(viewDestroyed()));
-#ifdef QT_KEYPAD_NAVIGATION
+#ifdef QT_SOFTKEYS_ENABLED
selectAction->setParent(itemView);
cancelAction->setParent(itemView);
#endif