diff options
author | Milan Crha <mcrha@redhat.com> | 2010-04-13 05:44:28 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-04-13 05:44:28 +0800 |
commit | c0855fa50a3bd29facbbbe4122409cf36050a66a (patch) | |
tree | b76383fd4f47aa7928d16575491d33a18c38a87b /calendar/gui | |
parent | 51e5ae5524c778309800530e1e25fdf74f2226da (diff) | |
download | gsoc2013-evolution-c0855fa50a3bd29facbbbe4122409cf36050a66a.tar.gz gsoc2013-evolution-c0855fa50a3bd29facbbbe4122409cf36050a66a.tar.zst gsoc2013-evolution-c0855fa50a3bd29facbbbe4122409cf36050a66a.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 9e2ab5579e..ec91442fec 100644 --- a/calendar/gui/e-cal-model.c +++ b/calendar/gui/e-cal-model.c @@ -2142,6 +2142,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); } |