From 06943232b36b6ef99051c375db76974065e028d2 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sat, 23 Oct 2010 14:52:27 -0400 Subject: Fix typo in EText. Fill color properties should be write-only, not read-only. --- widgets/text/e-text.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c index 593ef8d6ab..74c9385012 100644 --- a/widgets/text/e-text.c +++ b/widgets/text/e-text.c @@ -3231,14 +3231,14 @@ e_text_class_init (ETextClass *klass) "Fill color", "Fill color", NULL, - G_PARAM_READABLE)); + G_PARAM_WRITABLE)); g_object_class_install_property (gobject_class, PROP_FILL_COLOR_GDK, g_param_spec_boxed ("fill_color_gdk", "GDK fill color", "GDK fill color", GDK_TYPE_COLOR, - G_PARAM_READABLE)); + G_PARAM_WRITABLE)); g_object_class_install_property (gobject_class, PROP_FILL_COLOR_RGBA, g_param_spec_uint ("fill_color_rgba", -- cgit v1.2.3