diff options
author | axis <qt-info@nokia.com> | 2010-01-18 10:45:07 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2010-01-20 16:24:03 (GMT) |
commit | 5464cee529a26832517607b764e805bef96ea9f1 (patch) | |
tree | a853194049b8dab5d79cd632f399e84588ebc8bf /src/gui/kernel/qapplication_p.h | |
parent | 2d5be8b2389eed8eae4b767ff0f4dd3901b28100 (diff) | |
download | Qt-5464cee529a26832517607b764e805bef96ea9f1.zip Qt-5464cee529a26832517607b764e805bef96ea9f1.tar.gz Qt-5464cee529a26832517607b764e805bef96ea9f1.tar.bz2 |
Implemented event filter functions for Symbian.
Previously only the symbian specific event filters were called, but
now all filters in QApplication, QAbstractEventDispatcher and
QInputContext should be called.
Task: QT-2629
RevBy: Jason Barron
Autotest: Passed
Diffstat (limited to 'src/gui/kernel/qapplication_p.h')
-rw-r--r-- | src/gui/kernel/qapplication_p.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/kernel/qapplication_p.h b/src/gui/kernel/qapplication_p.h index f8943a8..9c001ab 100644 --- a/src/gui/kernel/qapplication_p.h +++ b/src/gui/kernel/qapplication_p.h @@ -501,9 +501,9 @@ public: static TUint resolveS60ScanCode(TInt scanCode, TUint keysym); QSet<WId> nativeWindows; - int symbianProcessWsEvent(const TWsEvent *event); - int symbianHandleCommand(int command); - int symbianResourceChange(int type); + int symbianProcessWsEvent(const QSymbianEvent *symbianEvent); + int symbianHandleCommand(const QSymbianEvent *symbianEvent); + int symbianResourceChange(const QSymbianEvent *symbianEvent); #endif #if defined(Q_WS_WIN) || defined(Q_WS_X11) || defined (Q_WS_QWS) |