aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorGert Michael Kulyk <gkulyk@yahoo.de>2010-05-21 03:16:19 +0800
committerMilan Crha <mcrha@redhat.com>2010-05-21 03:16:19 +0800
commit53dd5f199f5e15f16c632606e616e51be886f345 (patch)
treec78b6b7ef5ab1a9d2f32bb08358b7778d16f33a2 /calendar
parent40fb13f6a3200ade9449090ef84278ee06f76fc0 (diff)
downloadgsoc2013-evolution-53dd5f199f5e15f16c632606e616e51be886f345.tar
gsoc2013-evolution-53dd5f199f5e15f16c632606e616e51be886f345.tar.gz
gsoc2013-evolution-53dd5f199f5e15f16c632606e616e51be886f345.tar.bz2
gsoc2013-evolution-53dd5f199f5e15f16c632606e616e51be886f345.tar.lz
gsoc2013-evolution-53dd5f199f5e15f16c632606e616e51be886f345.tar.xz
gsoc2013-evolution-53dd5f199f5e15f16c632606e616e51be886f345.tar.zst
gsoc2013-evolution-53dd5f199f5e15f16c632606e616e51be886f345.zip
Bug #616889 - Force 24h format for locales not supporting 12h format
Diffstat (limited to 'calendar')
-rw-r--r--calendar/gui/dialogs/cal-prefs-dialog.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/cal-prefs-dialog.c b/calendar/gui/dialogs/cal-prefs-dialog.c
index 5baf22306c..35b946137f 100644
--- a/calendar/gui/dialogs/cal-prefs-dialog.c
+++ b/calendar/gui/dialogs/cal-prefs-dialog.c
@@ -599,6 +599,11 @@ calendar_prefs_dialog_construct (CalendarPrefsDialog *prefs,
locale_supports_12_hour_format =
calendar_config_locale_supports_12_hour_format ();
+ /* Force 24 hour format for locales which don't support 12 hour format */
+ if (!locale_supports_12_hour_format
+ && !e_shell_settings_get_boolean (shell_settings, "cal-use-24-hour-format"))
+ e_shell_settings_set_boolean (shell_settings, "cal-use-24-hour-format", TRUE);
+
/* Make sure our custom widget classes are registered with
* GType before we load the GtkBuilder definition file. */
E_TYPE_DATE_EDIT;