From 7a205fe6d0eb35f5fea8485fcb67f70d9d6446f7 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Mon, 18 Sep 2006 13:06:49 +0000 Subject: ** Fixes bug #352450 2006-08-23 Matthew Barnes ** Fixes bug #352450 * misc/e-canvas-background.c: * misc/e-cursors.c: * misc/e-map.c: * misc/e-reflow.c: * misc/e-task-widget.c: * misc/gal-combo-box.c: * table/e-cell-text.c: * table/e-cell-toggle.c: * table/e-table-field-chooser-item.c: * table/e-table-field-chooser.c: * table/e-table-header-item.c: * table/e-table-header-utils.c: * table/e-table-item.c: * table/e-table.c: * table/e-tree-memory.c: * table/e-tree-sorted.c: * table/e-tree.c: * table/e-text.c: Replace deprecated GLib and GDK function calls. svn path=/trunk/; revision=32783 --- widgets/text/e-text.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'widgets/text/e-text.c') diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c index 1cc802260e..24e3ced5e9 100644 --- a/widgets/text/e-text.c +++ b/widgets/text/e-text.c @@ -229,7 +229,7 @@ e_text_dispose (GObject *object) text->revert = NULL; if (text->stipple) - gdk_bitmap_unref (text->stipple); + g_object_unref (text->stipple); text->stipple = NULL; if (text->timeout_id) { @@ -645,11 +645,11 @@ static void set_stipple (EText *text, GdkBitmap *stipple, int reconfigure) { if (text->stipple && !reconfigure) - gdk_bitmap_unref (text->stipple); + g_object_unref (text->stipple); text->stipple = stipple; if (stipple && !reconfigure) - gdk_bitmap_ref (stipple); + g_object_ref (stipple); if (text->gc) { if (stipple) { @@ -1263,9 +1263,9 @@ e_text_unrealize (GnomeCanvasItem *item) gdk_gc_unref (text->gc); text->gc = NULL; - gdk_cursor_destroy (text->i_cursor); + gdk_cursor_unref (text->i_cursor); text->i_cursor = NULL; - gdk_cursor_destroy (text->default_cursor); + gdk_cursor_unref (text->default_cursor); text->default_cursor = NULL; if (parent_class->unrealize) -- cgit v1.2.3