diff options
author | Bharath Acharya <abharath@novell.com> | 2010-04-29 16:37:34 +0800 |
---|---|---|
committer | Bharath Acharya <abharath@novell.com> | 2010-04-29 16:37:34 +0800 |
commit | cbd3b67ea03a1c4c4333f88a2bb569df62678645 (patch) | |
tree | 15ed55ad9eeed565007dd7da961d14e324c25462 /addressbook | |
parent | bf623787d8a73fdd6bc0cc5b2028f4747c83f7c8 (diff) | |
download | gsoc2013-evolution-cbd3b67ea03a1c4c4333f88a2bb569df62678645.tar.gz gsoc2013-evolution-cbd3b67ea03a1c4c4333f88a2bb569df62678645.tar.zst gsoc2013-evolution-cbd3b67ea03a1c4c4333f88a2bb569df62678645.zip |
Bug #609052 - Crash printing contacts in List View
The returned widget does not have a reference added, so you do not need to unref it.
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index 1e9b732861..01605f3781 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -1239,7 +1239,6 @@ e_addressbook_view_print (EAddressbookView *view, widget = gtk_bin_get_child (GTK_BIN (view)); printable = e_table_get_printable (E_TABLE (widget)); g_object_ref_sink (printable); - g_object_unref (widget); e_contact_print_button (printable, action); |