diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-09-11 20:05:14 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-09-11 21:03:45 +0800 |
commit | 4c13763c5eab1013f6abab234f77fa06e4502652 (patch) | |
tree | ce46ba39f33e8b81447c084164de83b90b042aa7 /widgets/table/e-cell-text.c | |
parent | bc9ece413fce4941a74a13619815a0869c1d2e99 (diff) | |
download | gsoc2013-evolution-4c13763c5eab1013f6abab234f77fa06e4502652.tar.gz gsoc2013-evolution-4c13763c5eab1013f6abab234f77fa06e4502652.tar.zst gsoc2013-evolution-4c13763c5eab1013f6abab234f77fa06e4502652.zip |
Convert ECell from a GtkObject to a GObject.
To eliminate the floating-reference-on-finalize run-time warnings.
Diffstat (limited to 'widgets/table/e-cell-text.c')
-rw-r--r-- | widgets/table/e-cell-text.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/widgets/table/e-cell-text.c b/widgets/table/e-cell-text.c index 3c9a2c7128..1c0cb71eeb 100644 --- a/widgets/table/e-cell-text.c +++ b/widgets/table/e-cell-text.c @@ -1481,9 +1481,6 @@ ect_max_width_by_row (ECellView *ecell_view, return width + 8; } -/* - * GtkObject::destroy method - */ static void ect_finalize (GObject *object) { @@ -1493,6 +1490,7 @@ ect_finalize (GObject *object) G_OBJECT_CLASS (e_cell_text_parent_class)->finalize (object); } + /* Set_arg handler for the text item */ static void ect_set_property (GObject *object, |