diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2006-12-04 23:40:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2006-12-04 23:40:21 +0800 |
commit | f2db40b45db31c41660bb692bc91f90c49c6939e (patch) | |
tree | 19387822556145f2d0c446898a6e54a061163a71 /addressbook/gui/contact-editor | |
parent | 433790881e9ee889c13f90f4c2201a8462d2c4bb (diff) | |
download | gsoc2013-evolution-f2db40b45db31c41660bb692bc91f90c49c6939e.tar.gz gsoc2013-evolution-f2db40b45db31c41660bb692bc91f90c49c6939e.tar.zst gsoc2013-evolution-f2db40b45db31c41660bb692bc91f90c49c6939e.zip |
Fixes bug #357970
2006-12-04 Matthew Barnes <mbarnes@redhat.com>
Fixes bug #357970
* gui/contact-editor/e-contact-editor.c:
* gui/widgets/e-minicard.c:
* gui/widgets/eab-contact-display.c:
Don't call deprecated GLib / GDK functions.
svn path=/trunk/; revision=33044
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index 367ae376ce..5f8d348bb9 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -2785,7 +2785,7 @@ update_preview_cb (GtkFileChooser *file_chooser, gpointer data) gtk_image_set_from_pixbuf (GTK_IMAGE (preview), pixbuf); if (pixbuf) - gdk_pixbuf_unref (pixbuf); + g_object_unref (pixbuf); } static void |