diff options
author | Michael Terry <mike@mterry.name> | 2011-02-25 09:18:57 -0500 |
---|---|---|
committer | Michael Terry <mike@mterry.name> | 2011-02-25 09:18:57 -0500 |
commit | 2a6b56d0f00d2e23ca48687fe1c81d4e88be3b28 (patch) | |
tree | e1bfcbc4f9eb2ad22841abb797e2e57f308d5870 /src/utils.c | |
parent | 350271ee98b2ae288f9f1dde5eaea635e9dff3b7 (diff) | |
download | ayatana-indicator-datetime-2a6b56d0f00d2e23ca48687fe1c81d4e88be3b28.tar.gz ayatana-indicator-datetime-2a6b56d0f00d2e23ca48687fe1c81d4e88be3b28.tar.bz2 ayatana-indicator-datetime-2a6b56d0f00d2e23ca48687fe1c81d4e88be3b28.zip |
remove week-start preference
Diffstat (limited to 'src/utils.c')
-rw-r--r-- | src/utils.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/utils.c b/src/utils.c index 20ae958..7471926 100644 --- a/src/utils.c +++ b/src/utils.c @@ -50,17 +50,6 @@ is_locale_12h (void) return TRUE; } -/* Check the system locale setting to see if the week starts on Sunday or Monday */ -gboolean -is_locale_week_start_sunday (void) -{ - const char * week_1stday = nl_langinfo (_NL_TIME_WEEK_1STDAY); - - /* This appears to be a special value that libc uses for Sunday, it's not - really a string */ - return (GPOINTER_TO_INT (week_1stday) == 19971130); -} - void split_settings_location (const gchar * location, gchar ** zone, gchar ** name) { |