diff options
author | Jason Barron <jbarron@trolltech.com> | 2009-09-20 15:41:42 (GMT) |
---|---|---|
committer | Jason Barron <jbarron@trolltech.com> | 2009-09-21 08:07:58 (GMT) |
commit | 5b12c8736b93c288343d5dbecda7af8fdf264b3e (patch) | |
tree | 1cada98e280b5c89fd76e3f47e9b64322d3eea2f /src/gui/widgets/qmainwindow.cpp | |
parent | eb1746a18933d4691fb71bf4ad5de73ded697f40 (diff) | |
download | Qt-5b12c8736b93c288343d5dbecda7af8fdf264b3e.zip Qt-5b12c8736b93c288343d5dbecda7af8fdf264b3e.tar.gz Qt-5b12c8736b93c288343d5dbecda7af8fdf264b3e.tar.bz2 |
Introduce MenuSoftKey as a standard key to the internal enum.
QMainWindow was using the 'Done' standard softkey to represent the
action for the menu bar, but that was obviously wrong and pointed
out that one of hte needed standard softkeys was needed.
Reviewed-by: Alessandro Portale
Diffstat (limited to 'src/gui/widgets/qmainwindow.cpp')
-rw-r--r-- | src/gui/widgets/qmainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/qmainwindow.cpp b/src/gui/widgets/qmainwindow.cpp index 8bdbba7..227a179 100644 --- a/src/gui/widgets/qmainwindow.cpp +++ b/src/gui/widgets/qmainwindow.cpp @@ -118,7 +118,7 @@ void QMainWindowPrivate::init() iconSize = QSize(metric, metric); q->setAttribute(Qt::WA_Hover); #ifdef QT_SOFTKEYS_ENABLED - menuBarAction = QSoftKeyManager::createAction(QSoftKeyManager::DoneSoftKey, q); + menuBarAction = QSoftKeyManager::createAction(QSoftKeyManager::MenuSoftKey, q); #endif } |