diff options
author | Denis Dzyubenko <denis.dzyubenko@nokia.com> | 2010-04-21 12:56:40 (GMT) |
---|---|---|
committer | Denis Dzyubenko <denis.dzyubenko@nokia.com> | 2010-05-03 15:31:27 (GMT) |
commit | e4c60e6b8d111c6214d8ee47b8c2bb8b9f8fcfe2 (patch) | |
tree | 8966060ea690d99ff40eee700e2a5a7064c41984 /src/gui/kernel/qapplication.cpp | |
parent | 3d852917187e29892529ab51d24c1a1177068a88 (diff) | |
download | Qt-e4c60e6b8d111c6214d8ee47b8c2bb8b9f8fcfe2.zip Qt-e4c60e6b8d111c6214d8ee47b8c2bb8b9f8fcfe2.tar.gz Qt-e4c60e6b8d111c6214d8ee47b8c2bb8b9f8fcfe2.tar.bz2 |
Support updating system locale data on Symbian
Subscribing to the locale change notification to be able to update the
system locale whenever the user changes the current system locale.
Task-number: QTBUG-4870
Reviewed-by: Thomas Zander
Reviewed-by: Jason Barron
Diffstat (limited to 'src/gui/kernel/qapplication.cpp')
-rw-r--r-- | src/gui/kernel/qapplication.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp index ec635d4..bc58c76 100644 --- a/src/gui/kernel/qapplication.cpp +++ b/src/gui/kernel/qapplication.cpp @@ -788,6 +788,10 @@ void QApplicationPrivate::construct( qt_gui_eval_init(application_type); #endif +#if defined(Q_OS_SYMBIAN) && !defined(QT_NO_SYSTEMLOCALE) + symbianInit(); +#endif + #ifndef QT_NO_LIBRARY if(load_testability) { QLibrary testLib(QLatin1String("qttestability")); |