aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-config-field.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-12 03:09:23 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-12 03:09:23 +0800
commit33d137c42ea397e4d954173b1796443b6c759880 (patch)
tree921db2a118079d7d51b896ee3496b266e6483759 /widgets/table/e-table-config-field.c
parent0ebdf5ad6377cfcfd9216b19020505c65d891dde (diff)
downloadgsoc2013-evolution-33d137c42ea397e4d954173b1796443b6c759880.tar
gsoc2013-evolution-33d137c42ea397e4d954173b1796443b6c759880.tar.gz
gsoc2013-evolution-33d137c42ea397e4d954173b1796443b6c759880.tar.bz2
gsoc2013-evolution-33d137c42ea397e4d954173b1796443b6c759880.tar.lz
gsoc2013-evolution-33d137c42ea397e4d954173b1796443b6c759880.tar.xz
gsoc2013-evolution-33d137c42ea397e4d954173b1796443b6c759880.tar.zst
gsoc2013-evolution-33d137c42ea397e4d954173b1796443b6c759880.zip
Replace gtk_object_(un)?ref() with g_object_(un)?ref(). Likewise.
* gal/e-table/e-cell-popup.c: Replace gtk_object_(un)?ref() with g_object_(un)?ref(). * gal/e-table/e-cell-text.c: Likewise. * gal/e-table/e-cell-tree.c: Likewise. * gal/e-table/e-cell-vbox.c: Likewise. * gal/e-table/e-table-click-to-add.c: Likewise. * gal/e-table/e-table-config-field.c: Likewise. * gal/e-table/e-table-field-chooser-dialog.c: Likewise. * gal/e-table/e-table-field-chooser-item.c: Likewise. * gal/e-table/e-table-field-chooser.c: Likewise. * gal/e-table/e-table-group-container.c: Likewise. * gal/e-table/e-table-item.c: Likewise. * gal/e-table/e-table-without.c: Likewise. svn path=/trunk/; revision=18702
Diffstat (limited to 'widgets/table/e-table-config-field.c')
-rw-r--r--widgets/table/e-table-config-field.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/widgets/table/e-table-config-field.c b/widgets/table/e-table-config-field.c
index 5bcd5456a7..020f316643 100644
--- a/widgets/table/e-table-config-field.c
+++ b/widgets/table/e-table-config-field.c
@@ -39,11 +39,11 @@ etcf_destroy (GtkObject *object)
ETableConfigField *etcf = E_TABLE_CONFIG_FIELD (object);
if (etct->spec)
- gtk_object_unref(GTK_OBJECT(etcf->spec));
+ g_object_unref (etcf->spec);
etct->spec = NULL;
if (etct->sort_info)
- gtk_object_unref(GTK_OBJECT(etcf->sort_info));
+ g_object_unref (etcf->sort_info);
etct->sort_info = NULL;
GTK_OBJECT_CLASS (etcf_parent_class)->destroy (object);
@@ -238,10 +238,10 @@ e_table_config_field_construct_nth (ETableConfigField *etcf,
GtkWidget *internal_vbox2;
etcf->spec = spec;
- gtk_object_ref(GTK_OBJECT(spec));
+ g_object_ref (spec);
etcf->sort_info = sort_info;
- gtk_object_ref(GTK_OBJECT(sort_info));
+ g_object_ref (sort_info);
etcf->grouping = grouping;
etcf->n = n;