diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-ops.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 9ba2e19933..2fccdd2481 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-08-08 Peter Williams <peterw@ximian.com> + + * mail-ops.c (mail_update_subfolders): Change this gtk_object_ref + on the storage to a bonobo_object_ref. + 2001-08-07 Not Zed <NotZed@Ximian.com> * mail-config.c (mail_config_get_thread_list): Free the dbkey if diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 0f404af174..bda7ca01f0 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -440,7 +440,7 @@ mail_update_subfolders (CamelStore *store, EvolutionStorage *storage, /* however, this isn't a big problem ... */ info = g_malloc0(sizeof(*info)); info->storage = storage; - gtk_object_ref((GtkObject *)storage); + bonobo_object_ref((BonoboObject *)storage); info->done = done; info->data = data; |