[evolution/gnome-2-26] Bug #583360 - Be able to select UTC as day view's second timezone
- From: Milan Crha <mcrha src gnome org>
- To: svn-commits-list gnome org
- Subject: [evolution/gnome-2-26] Bug #583360 - Be able to select UTC as day view's second timezone
- Date: Thu, 21 May 2009 05:34:05 -0400 (EDT)
commit 80a7e0cd1b57716c189e3fa626c9c1b4245c1fab
Author: Milan Crha <mcrha redhat com>
Date: Thu May 21 11:31:51 2009 +0200
Bug #583360 - Be able to select UTC as day view's second timezone
---
calendar/gui/calendar-config.c | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/calendar/gui/calendar-config.c b/calendar/gui/calendar-config.c
index 6a7cf94..041b60d 100644
--- a/calendar/gui/calendar-config.c
+++ b/calendar/gui/calendar-config.c
@@ -1771,8 +1771,16 @@ calendar_config_select_day_second_zone (void)
dialog = e_timezone_dialog_get_toplevel (tzdlg);
if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) {
+ const char *location = NULL;
+
zone = e_timezone_dialog_get_timezone (tzdlg);
- calendar_config_set_day_second_zone (zone ? icaltimezone_get_location (zone) : NULL);
+ if (zone == icaltimezone_get_utc_timezone ()) {
+ location = "UTC";
+ } else if (zone) {
+ location = icaltimezone_get_location (zone);
+ }
+
+ calendar_config_set_day_second_zone (location);
}
g_object_unref (tzdlg);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]