** Fix for bug #558366

2009-02-25  Milan Crha  <mcrha@redhat.com>

	** Fix for bug #558366

	* gui/alarm-notify/alarm-notify.c: (alarm_notify_add_calendar):
	Set default timezone to resolve floating DATE-TIME properly.


svn path=/trunk/; revision=37338
This commit is contained in:
Milan Crha
2009-02-25 12:16:07 +00:00
committed by Milan Crha
parent 2524908adb
commit 33cbf2ebfd
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2009-02-25 Milan Crha <mcrha@redhat.com>
** Fix for bug #558366
* gui/alarm-notify/alarm-notify.c: (alarm_notify_add_calendar):
Set default timezone to resolve floating DATE-TIME properly.
2009-02-25 Milan Crha <mcrha@redhat.com>
** Fix for bug #238346

View File

@ -389,6 +389,8 @@ alarm_notify_add_calendar (AlarmNotify *an, ECalSourceType source_type, ESource
d (printf("%s:%d (alarm_notify_add_calendar) %s - Calendar Open Async... %p\n", __FILE__, __LINE__, str_uri, client));
g_hash_table_insert (priv->uri_client_hash[source_type], g_strdup (str_uri), client);
g_signal_connect (G_OBJECT (client), "cal_opened", G_CALLBACK (cal_opened_cb), an);
/* to resolve floating DATE-TIME properly */
e_cal_set_default_timezone (client, config_data_get_timezone (), NULL);
e_cal_open_async (client, FALSE);
}
g_free (str_uri);