aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-cell-text.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-cell-text.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-cell-text.c')
-rw-r--r--widgets/table/e-cell-text.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/table/e-cell-text.c b/widgets/table/e-cell-text.c
index 3e67923095..6c49eabca8 100644
--- a/widgets/table/e-cell-text.c
+++ b/widgets/table/e-cell-text.c
@@ -283,7 +283,7 @@ ect_stop_editing (ECellTextView *text_view, gboolean commit)
g_object_weak_unref (G_OBJECT (edit->invisible), invisible_finalize, edit);
}
if (edit->tep)
- gtk_object_unref (GTK_OBJECT(edit->tep));
+ g_object_unref (edit->tep);
if (edit->primary_selection)
g_free (edit->primary_selection);
if (edit->clipboard_selection)
@@ -2201,7 +2201,7 @@ _get_tep (CellEdit *edit)
{
if (!edit->tep) {
edit->tep = e_text_event_processor_emacs_like_new ();
- gtk_object_ref (GTK_OBJECT (edit->tep));
+ g_object_ref (edit->tep);
gtk_object_sink (GTK_OBJECT (edit->tep));
gtk_signal_connect (GTK_OBJECT(edit->tep),
"command",