[clutter/clutter-1.6] text: Fix the default value of "editable"
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [clutter/clutter-1.6] text: Fix the default value of "editable"
- Date: Fri, 29 Jul 2011 15:30:48 +0000 (UTC)
commit 7b650e4d3be512855fc7be506d45a050f59fc77e
Author: Damien Lespiau <damien lespiau intel com>
Date: Tue Jul 12 17:32:26 2011 +0100
text: Fix the default value of "editable"
The "editable" property is documented to default to TRUE, but is
initialized to FALSE in the _init() function.
Third party code would be affected if we changed the default to be
TRUE, so we have to change the default value in the GParamSpec.
https://bugzilla.gnome.org/show_bug.cgi?id=654726
(cherry picked from commit 4d58534fbb49be6c39017df1d4a32a9184e28f68)
Signed-off-by: Emmanuele Bassi <ebassi linux intel com>
clutter/clutter-text.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/clutter/clutter-text.c b/clutter/clutter-text.c
index 744b294..e227c67 100644
--- a/clutter/clutter-text.c
+++ b/clutter/clutter-text.c
@@ -2795,7 +2795,7 @@ clutter_text_class_init (ClutterTextClass *klass)
pspec = g_param_spec_boolean ("editable",
P_("Editable"),
P_("Whether the text is editable"),
- TRUE,
+ FALSE,
G_PARAM_READWRITE);
obj_props[PROP_EDITABLE] = pspec;
g_object_class_install_property (gobject_class, PROP_EDITABLE, pspec);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]