diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-31 01:34:16 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-31 01:34:16 +0800 |
commit | c7676f656d3dfaf8e3644dcd60e5e51fa2dd058c (patch) | |
tree | 84b6b83ef47054ae5caa97b8f1e20b2de8fd7fb7 | |
parent | cb5531d0bbc6ea22430f748814bfe92516fc1c1a (diff) | |
download | gsoc2013-empathy-c7676f656d3dfaf8e3644dcd60e5e51fa2dd058c.tar gsoc2013-empathy-c7676f656d3dfaf8e3644dcd60e5e51fa2dd058c.tar.gz gsoc2013-empathy-c7676f656d3dfaf8e3644dcd60e5e51fa2dd058c.tar.bz2 gsoc2013-empathy-c7676f656d3dfaf8e3644dcd60e5e51fa2dd058c.tar.lz gsoc2013-empathy-c7676f656d3dfaf8e3644dcd60e5e51fa2dd058c.tar.xz gsoc2013-empathy-c7676f656d3dfaf8e3644dcd60e5e51fa2dd058c.tar.zst gsoc2013-empathy-c7676f656d3dfaf8e3644dcd60e5e51fa2dd058c.zip |
remove finalize function
svn path=/trunk/; revision=2327
-rw-r--r-- | libempathy-gtk/empathy-contact-selector.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/libempathy-gtk/empathy-contact-selector.c b/libempathy-gtk/empathy-contact-selector.c index f816bfee0..1a8954d02 100644 --- a/libempathy-gtk/empathy-contact-selector.c +++ b/libempathy-gtk/empathy-contact-selector.c @@ -339,7 +339,6 @@ empathy_contact_selector_dispose (GObject *object) EmpathyContactSelector *selector = EMPATHY_CONTACT_SELECTOR (object); EmpathyContactSelectorPriv *priv = GET_PRIV (selector); - g_debug ("EmpathyContactSelector - dispose: %p", object); g_object_unref (priv->store); (G_OBJECT_CLASS (empathy_contact_selector_parent_class)->dispose) (object); @@ -347,21 +346,11 @@ empathy_contact_selector_dispose (GObject *object) static void -empathy_contact_selector_finalize (GObject *object) -{ - g_debug ("EmpathyContactSelector - finalize: %p", object); - - (G_OBJECT_CLASS (empathy_contact_selector_parent_class)->finalize) (object); -} - - -static void empathy_contact_selector_class_init (EmpathyContactSelectorClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->constructor = empathy_contact_selector_constructor; object_class->dispose = empathy_contact_selector_dispose; - object_class->finalize = empathy_contact_selector_finalize; object_class->set_property = empathy_contact_selector_set_property; object_class->get_property = empathy_contact_selector_get_property; g_type_class_add_private (klass, sizeof (EmpathyContactSelectorPriv)); |