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 /calendar/gui | |
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 'calendar/gui')
-rw-r--r-- | calendar/gui/e-cal-model.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/e-cal-model.c b/calendar/gui/e-cal-model.c index 1004d1b2a0..5cf20941b8 100644 --- a/calendar/gui/e-cal-model.c +++ b/calendar/gui/e-cal-model.c @@ -2211,6 +2211,8 @@ add_new_client (ECalModel *model, ECal *client, gboolean do_query) e_cal_model_update_status_message (model, msg, -1.0); g_free (msg); + e_cal_set_default_timezone (client, e_cal_model_get_timezone (model), NULL); + g_signal_connect (client, "cal_opened", G_CALLBACK (cal_opened_cb), model); e_cal_open_async (client, TRUE); } |