GdkBitmap is a GObject, not a boxed type.

2004-10-22  Anders Carlsson  <andersca@gnome.org>

	* gtk/gtktexttag.c: (gtk_text_tag_get_property):
	GdkBitmap is a GObject, not a boxed type.
This commit is contained in:
Anders Carlsson 2004-10-21 23:16:44 +00:00 committed by Anders Carlsson
parent e0ad07e0b4
commit 53afb2a593
5 changed files with 22 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-10-22 Anders Carlsson <andersca@gnome.org>
* gtk/gtktexttag.c: (gtk_text_tag_get_property):
GdkBitmap is a GObject, not a boxed type.
Thu Oct 21 15:01:09 2004 Owen Taylor <otaylor@redhat.com>
#155952

View File

@ -1,3 +1,8 @@
2004-10-22 Anders Carlsson <andersca@gnome.org>
* gtk/gtktexttag.c: (gtk_text_tag_get_property):
GdkBitmap is a GObject, not a boxed type.
Thu Oct 21 15:01:09 2004 Owen Taylor <otaylor@redhat.com>
#155952

View File

@ -1,3 +1,8 @@
2004-10-22 Anders Carlsson <andersca@gnome.org>
* gtk/gtktexttag.c: (gtk_text_tag_get_property):
GdkBitmap is a GObject, not a boxed type.
Thu Oct 21 15:01:09 2004 Owen Taylor <otaylor@redhat.com>
#155952

View File

@ -1,3 +1,8 @@
2004-10-22 Anders Carlsson <andersca@gnome.org>
* gtk/gtktexttag.c: (gtk_text_tag_get_property):
GdkBitmap is a GObject, not a boxed type.
Thu Oct 21 15:01:09 2004 Owen Taylor <otaylor@redhat.com>
#155952

View File

@ -1377,12 +1377,12 @@ gtk_text_tag_get_property (GObject *object,
case PROP_BACKGROUND_STIPPLE:
if (tag->bg_stipple_set)
g_value_set_boxed (value, tag->values->appearance.bg_stipple);
g_value_set_object (value, tag->values->appearance.bg_stipple);
break;
case PROP_FOREGROUND_STIPPLE:
if (tag->fg_stipple_set)
g_value_set_boxed (value, tag->values->appearance.fg_stipple);
g_value_set_object (value, tag->values->appearance.fg_stipple);
break;
case PROP_FONT: