diff options
author | Bharath Acharya <abharath@novell.com> | 2010-04-29 16:40:25 +0800 |
---|---|---|
committer | Bharath Acharya <abharath@novell.com> | 2010-04-29 16:40:25 +0800 |
commit | a8801c8c87269d0d98b9915f0268097c8117f297 (patch) | |
tree | 8f2f9410f5e724d7c6ab6091005015657a159f84 /addressbook | |
parent | b64434a8699fbeea77a9108b313f29828adab321 (diff) | |
download | gsoc2013-evolution-a8801c8c87269d0d98b9915f0268097c8117f297.tar.gz gsoc2013-evolution-a8801c8c87269d0d98b9915f0268097c8117f297.tar.zst gsoc2013-evolution-a8801c8c87269d0d98b9915f0268097c8117f297.zip |
Bug #617150 - 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 6ffeee56a0..d3538899ba 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -1237,7 +1237,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); |