diff options
Diffstat (limited to 'widgets/table/e-cell-float.c')
-rw-r--r-- | widgets/table/e-cell-float.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/table/e-cell-float.c b/widgets/table/e-cell-float.c index aff6c88cc5..133be063b3 100644 --- a/widgets/table/e-cell-float.c +++ b/widgets/table/e-cell-float.c @@ -56,7 +56,7 @@ e_cell_float_class_init (GtkObjectClass *object_class) { ECellTextClass *ectc = (ECellTextClass *) object_class; - parent_class = gtk_type_class (PARENT_TYPE); + parent_class = g_type_class_ref (PARENT_TYPE); ectc->get_text = ecf_get_text; ectc->free_text = ecf_free_text; @@ -83,7 +83,7 @@ e_cell_float_init (GtkObject *object) ECell * e_cell_float_new (const char *fontname, GtkJustification justify) { - ECellFloat *ecn = gtk_type_new (e_cell_float_get_type ()); + ECellFloat *ecn = g_object_new (E_CELL_FLOAT_TYPE, NULL); e_cell_text_construct(E_CELL_TEXT(ecn), fontname, justify); |