diff options
author | Milan Crha <mcrha@redhat.com> | 2008-02-21 01:08:22 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-02-21 01:08:22 +0800 |
commit | 2dc419ef1712eeb6d2668a0366c50a8a3ff1f665 (patch) | |
tree | f5251b7b28b3675d29f8a0f4fce3ba83e52bd823 /calendar/gui | |
parent | 6ca4d6b1083d4c982a4810d677c19afa5a88456f (diff) | |
download | gsoc2013-evolution-2dc419ef1712eeb6d2668a0366c50a8a3ff1f665.tar.gz gsoc2013-evolution-2dc419ef1712eeb6d2668a0366c50a8a3ff1f665.tar.zst gsoc2013-evolution-2dc419ef1712eeb6d2668a0366c50a8a3ff1f665.zip |
** Fix for bug #440426
2008-02-20 Milan Crha <mcrha@redhat.com>
** Fix for bug #440426
* gui/e-cal-model.c: (e_cal_model_dispose), (remove_client):
Unset also default_client if removing it.
svn path=/trunk/; revision=35065
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-cal-model.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/gui/e-cal-model.c b/calendar/gui/e-cal-model.c index 3fda497431..19fb146d3e 100644 --- a/calendar/gui/e-cal-model.c +++ b/calendar/gui/e-cal-model.c @@ -242,6 +242,7 @@ e_cal_model_dispose (GObject *object) } priv->clients = NULL; + priv->default_client = NULL; } if (G_OBJECT_CLASS (e_cal_model_parent_class)->dispose) @@ -1701,6 +1702,9 @@ remove_client (ECalModel *model, ECalModelClient *client_data) return; } + if (model->priv->default_client == client_data->client) + model->priv->default_client = NULL; + /* Remove the client from the list */ model->priv->clients = g_list_remove (model->priv->clients, client_data); |