diff options
author | Peter Williams <peterw@ximian.com> | 2001-08-09 00:10:21 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2001-08-09 00:10:21 +0800 |
commit | 51023d5abfa8a1bdd70a0f4d39c6447d2a21f7e7 (patch) | |
tree | 5c1c387f2afa87a1630f855d3b529b16793e39ed /mail/component-factory.c | |
parent | d2b3c36a52a001693b5c0326aafd969a2d5f9569 (diff) | |
download | gsoc2013-evolution-51023d5abfa8a1bdd70a0f4d39c6447d2a21f7e7.tar.gz gsoc2013-evolution-51023d5abfa8a1bdd70a0f4d39c6447d2a21f7e7.tar.zst gsoc2013-evolution-51023d5abfa8a1bdd70a0f4d39c6447d2a21f7e7.zip |
[ Change this gtk_object_ref on the storage to a bonobo_object_ref ]
2001-08-08 Peter Williams <peterw@ximian.com>
[ Change this gtk_object_ref on the storage to a bonobo_object_ref ]
* component-factory.c (mail_lookup_storage): And here.
* mail-vfolder.c (mail_vfolder_get_vfolder_storage): And here.
svn path=/trunk/; revision=11791
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index cee845c732..41cd6db365 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -999,7 +999,7 @@ mail_lookup_storage (CamelStore *store) storage = g_hash_table_lookup (storages_hash, store); if (storage) - gtk_object_ref (GTK_OBJECT (storage)); + bonobo_object_ref (BONOBO_OBJECT (storage)); return storage; } |