summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gui/kernel/qapplication.h2
-rw-r--r--src/gui/kernel/qapplication_s60.cpp2
-rw-r--r--src/s60main/qts60mainappui.cpp2
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)