diff options
author | Alessandro Portale <aportale@trolltech.com> | 2009-06-02 18:28:48 (GMT) |
---|---|---|
committer | Alessandro Portale <aportale@trolltech.com> | 2009-06-02 18:28:48 (GMT) |
commit | 9877c2b3b4b9bb8afaac9b207917ccdd866ad1d3 (patch) | |
tree | feaef23d8c3c4291421e4d04cbf838ee61a0527e /src/gui/kernel/qapplication.h | |
parent | 629c7c2785bc7b371ed8ce1abf016c6c35a4a78f (diff) | |
download | Qt-9877c2b3b4b9bb8afaac9b207917ccdd866ad1d3.zip Qt-9877c2b3b4b9bb8afaac9b207917ccdd866ad1d3.tar.gz Qt-9877c2b3b4b9bb8afaac9b207917ccdd866ad1d3.tar.bz2 |
Since now, S60 commands are handled by QApplication::s60HandleCommandL
inside QtGui, we do not need to export those QMenu[Bar]::symbianCommands
through our public API, anymore.
This commit moved the code of QMenuBar::symbianCommands to
QMenuBarPrivate::symbianCommands and made that one static.
QMenu[Private]::symbianCommands was apparently unused -> deleted.
RevBy: Jason Barron
RevvBy: Markku Luukkainen
Diffstat (limited to 'src/gui/kernel/qapplication.h')
-rw-r--r-- | src/gui/kernel/qapplication.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qapplication.h b/src/gui/kernel/qapplication.h index ca0eb98..f9559fa 100644 --- a/src/gui/kernel/qapplication.h +++ b/src/gui/kernel/qapplication.h @@ -233,7 +233,7 @@ public: #if defined(Q_WS_S60) int s60ProcessEvent(TWsEvent *event); virtual bool s60EventFilter(TWsEvent *aEvent); - void s60HandleCommandL(int command); + void symbianHandleCommand(int command); #endif #if defined(Q_WS_QWS) virtual bool qwsEventFilter(QWSEvent *); |