diff options
author | Hans Petter Jansson <hpj@ximian.com> | 2003-08-14 15:18:18 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2003-08-14 15:18:18 +0800 |
commit | 6d45ed28597a85c6b5dfa49aeeaf3911da76cf77 (patch) | |
tree | e317252d95d4df6ef75f10088d1372c1978b6e7b /addressbook/gui/contact-editor | |
parent | 7a208fc48c41e901d527eab89cb103f3c999ad86 (diff) | |
download | gsoc2013-evolution-6d45ed28597a85c6b5dfa49aeeaf3911da76cf77.tar gsoc2013-evolution-6d45ed28597a85c6b5dfa49aeeaf3911da76cf77.tar.gz gsoc2013-evolution-6d45ed28597a85c6b5dfa49aeeaf3911da76cf77.tar.bz2 gsoc2013-evolution-6d45ed28597a85c6b5dfa49aeeaf3911da76cf77.tar.lz gsoc2013-evolution-6d45ed28597a85c6b5dfa49aeeaf3911da76cf77.tar.xz gsoc2013-evolution-6d45ed28597a85c6b5dfa49aeeaf3911da76cf77.tar.zst gsoc2013-evolution-6d45ed28597a85c6b5dfa49aeeaf3911da76cf77.zip |
Chain.
2003-08-12 Hans Petter Jansson <hpj@ximian.com>
* backend/ebook/e-destination.c (e_destination_dispose): Chain.
* gui/component/e-address-widget.c (e_address_widget_destroy): Chain.
Prevent double frees. Prevent double GSource removal.
* gui/component/e-cardlist-model.c (e_cardlist_model_class_init):
Store parent class.
(e_cardlist_model_dispose): Chain. Prevent double frees and unrefs.
* gui/contact-editor/e-contact-editor-address.c
(e_contact_editor_address_dispose): Chain.
* gui/contact-editor/e-contact-editor-fullname.c
(e_contact_editor_fullname_dispose): Chain.
* gui/contact-list-editor/e-contact-list-editor.c
(e_contact_list_editor_dispose): Chain.
* gui/contact-list-editor/e-contact-list-model.c
(contact_list_model_destroy): Chain. Prevent double frees and unrefs.
* gui/widgets/e-addressbook-reflow-adapter.c (addressbook_dispose):
Chain.
(addressbook_finalize): Chain.
* gui/widgets/e-addressbook-table-adapter.c (addressbook_dispose):
Chain.
* gui/widgets/e-addressbook-treeview-adapter.c (addressbook_destroy):
Chain. Prevent double free.
* gui/widgets/gal-view-minicard.c (gal_view_minicard_dispose):
Chain. Prevent double free and detach.
* gui/widgts/gal-view-treeview.c (gal_view_treeview_dispose):
Chain. Prevent double free and detach.
* printins/e-contact-print-style-editor.c
(e_contact_print_stule_editor_destroy): Chain. Prevent double unref.
svn path=/trunk/; revision=22229
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor-address.c | 3 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor-fullname.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor-address.c b/addressbook/gui/contact-editor/e-contact-editor-address.c index f6a75bbfe5..da8bb5421f 100644 --- a/addressbook/gui/contact-editor/e-contact-editor-address.c +++ b/addressbook/gui/contact-editor/e-contact-editor-address.c @@ -457,6 +457,9 @@ e_contact_editor_address_dispose (GObject *object) e_card_delivery_address_unref(e_contact_editor_address->address); e_contact_editor_address->address = NULL; } + + if (G_OBJECT_CLASS (parent_class)->dispose) + (* G_OBJECT_CLASS (parent_class)->dispose) (object); } GtkWidget* diff --git a/addressbook/gui/contact-editor/e-contact-editor-fullname.c b/addressbook/gui/contact-editor/e-contact-editor-fullname.c index 917a8fd075..4a7d6cec1b 100644 --- a/addressbook/gui/contact-editor/e-contact-editor-fullname.c +++ b/addressbook/gui/contact-editor/e-contact-editor-fullname.c @@ -145,6 +145,9 @@ e_contact_editor_fullname_dispose (GObject *object) e_card_name_unref(e_contact_editor_fullname->name); e_contact_editor_fullname->name = NULL; } + + if (G_OBJECT_CLASS (parent_class)->dispose) + (* G_OBJECT_CLASS (parent_class)->dispose) (object); } GtkWidget* |