diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-05-16 19:45:45 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-05-16 19:45:45 +0800 |
commit | 4ce48773980ec26cde77275c68fa05a5eab73515 (patch) | |
tree | 77e338dfe31f3bbb978f5cd7ddc94f2fc1a96e7b /addressbook/gui/component | |
parent | 006c78bdab12452630ecf0f7b97c8f0870fcca8c (diff) | |
download | gsoc2013-evolution-4ce48773980ec26cde77275c68fa05a5eab73515.tar gsoc2013-evolution-4ce48773980ec26cde77275c68fa05a5eab73515.tar.gz gsoc2013-evolution-4ce48773980ec26cde77275c68fa05a5eab73515.tar.bz2 gsoc2013-evolution-4ce48773980ec26cde77275c68fa05a5eab73515.tar.lz gsoc2013-evolution-4ce48773980ec26cde77275c68fa05a5eab73515.tar.xz gsoc2013-evolution-4ce48773980ec26cde77275c68fa05a5eab73515.tar.zst gsoc2013-evolution-4ce48773980ec26cde77275c68fa05a5eab73515.zip |
Fixed some memory leaks.
2000-05-16 Christopher James Lahey <clahey@helixcode.com>
* backend/ebook/e-card-simple.c, backend/pas/pas-backend-file.c,
contact-editor/e-contact-editor.c, ename/e-name-western.c,
gui/component/addressbook.c, gui/minicard/e-minicard-view.c: Fixed
some memory leaks.
* backend/ebook/e-card.c: Rearranged some code.
svn path=/trunk/; revision=3085
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r-- | addressbook/gui/component/addressbook.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index 5830eb95f8..f54738fcb9 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -94,13 +94,17 @@ static void new_contact_cb (BonoboUIHandler *uih, void *user_data, const char *path) { gint result; - GtkWidget* contact_editor = - e_contact_editor_new(e_card_new("")); + ECard *card; + GtkWidget* contact_editor; EBook *book; AddressbookView *view = (AddressbookView *) user_data; GtkObject *object; GtkWidget* dlg = gnome_dialog_new ("Contact Editor", "Save", "Cancel", NULL); + card = e_card_new(""); + contact_editor = e_contact_editor_new(card); + gtk_object_sink(GTK_OBJECT(card)); + gtk_window_set_policy(GTK_WINDOW(dlg), FALSE, TRUE, FALSE); if (view->view) |