diff options
author | Milan Crha <mcrha@redhat.com> | 2010-04-13 05:45:26 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-04-13 05:45:26 +0800 |
commit | e8745fb65e7b7c8b5910591ee96d74200c597dfa (patch) | |
tree | ede59c67972665fdaa9f6b875a607a81dcd0ab83 /modules/calendar/e-cal-shell-sidebar.c | |
parent | ad1de0aa0889edaa0ad9bc41c170fa84ec5536f2 (diff) | |
download | gsoc2013-evolution-e8745fb65e7b7c8b5910591ee96d74200c597dfa.tar.gz gsoc2013-evolution-e8745fb65e7b7c8b5910591ee96d74200c597dfa.tar.zst gsoc2013-evolution-e8745fb65e7b7c8b5910591ee96d74200c597dfa.zip |
Bug #611646 - Calendar shows recurring birthdays incorrectly
Diffstat (limited to 'modules/calendar/e-cal-shell-sidebar.c')
-rw-r--r-- | modules/calendar/e-cal-shell-sidebar.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/calendar/e-cal-shell-sidebar.c b/modules/calendar/e-cal-shell-sidebar.c index abe4132fa4..eb28868ce6 100644 --- a/modules/calendar/e-cal-shell-sidebar.c +++ b/modules/calendar/e-cal-shell-sidebar.c @@ -36,6 +36,7 @@ #include "e-cal-shell-view.h" #include "e-cal-shell-backend.h" +#include "e-cal-shell-content.h" #define E_CAL_SHELL_SIDEBAR_GET_PRIVATE(obj) \ (G_TYPE_INSTANCE_GET_PRIVATE \ @@ -303,6 +304,7 @@ cal_shell_sidebar_set_default (ECalShellSidebar *cal_shell_sidebar, G_CALLBACK (cal_shell_sidebar_default_opened_cb), cal_shell_sidebar); + e_cal_set_default_timezone (client, e_cal_model_get_timezone (e_cal_shell_content_get_model (E_CAL_SHELL_CONTENT (e_shell_view_get_shell_content (e_shell_sidebar_get_shell_view (E_SHELL_SIDEBAR (cal_shell_sidebar)))))), NULL); e_cal_open_async (client, FALSE); } @@ -956,6 +958,7 @@ e_cal_shell_sidebar_add_source (ECalShellSidebar *cal_shell_sidebar, G_CALLBACK (cal_shell_sidebar_client_opened_cb), cal_shell_sidebar); + e_cal_set_default_timezone (client, e_cal_model_get_timezone (e_cal_shell_content_get_model (E_CAL_SHELL_CONTENT (e_shell_view_get_shell_content (e_shell_sidebar_get_shell_view (E_SHELL_SIDEBAR (cal_shell_sidebar)))))), NULL); e_cal_open_async (client, FALSE); } |