aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-10-24 02:52:27 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-10-30 01:51:38 +0800
commit06943232b36b6ef99051c375db76974065e028d2 (patch)
tree04c0239cb793d1ea41a6a6c24e5e4b54cf9a00da /widgets
parentdf5ff95999e486568f6c229ac9dcbef70aeaff4f (diff)
downloadgsoc2013-evolution-06943232b36b6ef99051c375db76974065e028d2.tar
gsoc2013-evolution-06943232b36b6ef99051c375db76974065e028d2.tar.gz
gsoc2013-evolution-06943232b36b6ef99051c375db76974065e028d2.tar.bz2
gsoc2013-evolution-06943232b36b6ef99051c375db76974065e028d2.tar.lz
gsoc2013-evolution-06943232b36b6ef99051c375db76974065e028d2.tar.xz
gsoc2013-evolution-06943232b36b6ef99051c375db76974065e028d2.tar.zst
gsoc2013-evolution-06943232b36b6ef99051c375db76974065e028d2.zip
Fix typo in EText.
Fill color properties should be write-only, not read-only.
Diffstat (limited to 'widgets')
-rw-r--r--widgets/text/e-text.c4
1 files 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",