diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 23:01:30 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 23:07:15 +0800 |
commit | ee9e40df7290b056332d890ce19d22dbe24c16d6 (patch) | |
tree | e0a016dde550d3354d9125731888b69c023fa8ae | |
parent | c6651fdfbaf19fd20da3f9be13691f142aef8786 (diff) | |
download | gsoc2013-empathy-ee9e40df7290b056332d890ce19d22dbe24c16d6.tar gsoc2013-empathy-ee9e40df7290b056332d890ce19d22dbe24c16d6.tar.gz gsoc2013-empathy-ee9e40df7290b056332d890ce19d22dbe24c16d6.tar.bz2 gsoc2013-empathy-ee9e40df7290b056332d890ce19d22dbe24c16d6.tar.lz gsoc2013-empathy-ee9e40df7290b056332d890ce19d22dbe24c16d6.tar.xz gsoc2013-empathy-ee9e40df7290b056332d890ce19d22dbe24c16d6.tar.zst gsoc2013-empathy-ee9e40df7290b056332d890ce19d22dbe24c16d6.zip |
empathy-contact-selector: fix coding style
-rw-r--r-- | libempathy-gtk/empathy-contact-selector.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-contact-selector.c b/libempathy-gtk/empathy-contact-selector.c index f4a302c5b..8aa02fa6d 100644 --- a/libempathy-gtk/empathy-contact-selector.c +++ b/libempathy-gtk/empathy-contact-selector.c @@ -202,7 +202,7 @@ contact_selector_constructor (GType type, GtkCellLayout *cell_layout; GtkCellRenderer *renderer; - object = G_OBJECT_CLASS (empathy_contact_selector_parent_class)->constructor + object = G_OBJECT_CLASS (empathy_contact_selector_parent_class)->constructor (type, n_construct_params, construct_params); priv = GET_PRIV (object); contact_selector = EMPATHY_CONTACT_SELECTOR (object); @@ -422,7 +422,7 @@ contact_selector_filter_visible_func (GtkTreeModel *model, if (contact != NULL) { - visible = data->func(contact, data->user_data); + visible = data->func (contact, data->user_data); g_object_unref (contact); } |