diff options
author | Jason Barron <jbarron@trolltech.com> | 2009-06-03 06:55:35 (GMT) |
---|---|---|
committer | Jason Barron <jbarron@trolltech.com> | 2009-06-03 06:55:35 (GMT) |
commit | 6ea9dca71b58c51e8fdb44fdd7d9b2a0381538cb (patch) | |
tree | de2ce4cb764a3b3062afd0932f11bbfaa8905f86 /src | |
parent | 7a7a73184b5de3be3bb84df3991ca95461a711cc (diff) | |
download | Qt-6ea9dca71b58c51e8fdb44fdd7d9b2a0381538cb.zip Qt-6ea9dca71b58c51e8fdb44fdd7d9b2a0381538cb.tar.gz Qt-6ea9dca71b58c51e8fdb44fdd7d9b2a0381538cb.tar.bz2 |
Change function name to match symbianHandleCommand().
These functions are really Symbian functions and not S60 specific so
they should be named as such. Also, our public API should use the Qt
convention and not the Symbian convention so remove the 'L' even if
it is a leaving function at the moment.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/kernel/qapplication.h | 2 | ||||
-rw-r--r-- | src/gui/kernel/qapplication_s60.cpp | 2 | ||||
-rw-r--r-- | src/s60main/qts60mainappui.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/kernel/qapplication.h b/src/gui/kernel/qapplication.h index 6088780..e1b8b26 100644 --- a/src/gui/kernel/qapplication.h +++ b/src/gui/kernel/qapplication.h @@ -234,7 +234,7 @@ public: int s60ProcessEvent(TWsEvent *event); virtual bool s60EventFilter(TWsEvent *aEvent); void symbianHandleCommand(int command); - void s60ResourceChangeL(int type); + void symbianResourceChange(int type); #endif #if defined(Q_WS_QWS) virtual bool qwsEventFilter(QWSEvent *); diff --git a/src/gui/kernel/qapplication_s60.cpp b/src/gui/kernel/qapplication_s60.cpp index dc2b9d3..a05e9bd 100644 --- a/src/gui/kernel/qapplication_s60.cpp +++ b/src/gui/kernel/qapplication_s60.cpp @@ -1040,7 +1040,7 @@ void QApplication::symbianHandleCommand(int command) } } -void QApplication::s60ResourceChangeL(int type) +void QApplication::symbianResourceChange(int type) { switch (type) { case KEikDynamicLayoutVariantSwitch: diff --git a/src/s60main/qts60mainappui.cpp b/src/s60main/qts60mainappui.cpp index f7e570b..49a3342 100644 --- a/src/s60main/qts60mainappui.cpp +++ b/src/s60main/qts60mainappui.cpp @@ -86,7 +86,7 @@ void CQtS60MainAppUi::HandleResourceChangeL(TInt aType) CAknAppUi::HandleResourceChangeL(aType); if (qApp) - qApp->s60ResourceChangeL(aType); + qApp->symbianResourceChange(aType); } void CQtS60MainAppUi::HandleWsEventL(const TWsEvent& aEvent, CCoeControl *control) |