From: Damien Lespiau Date: Tue, 5 Oct 2010 06:44:49 +0000 (+0100) Subject: bin-layer: Fix the property blurbs X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=24577a053868bfa39c7758dea2173cf090230de2;p=profile%2Fivi%2Fclutter.git bin-layer: Fix the property blurbs The descriptions for the 'y-align' and 'x-align' properties talk about a layer and a layer manager. It seems that these properties are the alignement factors relative to the BinLayout, so document them accordingly. --- diff --git a/clutter/clutter-bin-layout.c b/clutter/clutter-bin-layout.c index e9223e8..971a8f4 100644 --- a/clutter/clutter-bin-layout.c +++ b/clutter/clutter-bin-layout.c @@ -257,7 +257,7 @@ clutter_bin_layer_class_init (ClutterBinLayerClass *klass) pspec = g_param_spec_enum ("x-align", P_("Horizontal Alignment"), P_("Horizontal alignment for the actor " - "inside the layer"), + "inside the layout manager"), CLUTTER_TYPE_BIN_ALIGNMENT, CLUTTER_BIN_ALIGNMENT_CENTER, CLUTTER_PARAM_READWRITE); @@ -269,7 +269,7 @@ clutter_bin_layer_class_init (ClutterBinLayerClass *klass) pspec = g_param_spec_enum ("y-align", P_("Vertical Alignment"), P_("Vertical alignment for the actor " - "inside the layer manager"), + "inside the layout manager"), CLUTTER_TYPE_BIN_ALIGNMENT, CLUTTER_BIN_ALIGNMENT_CENTER, CLUTTER_PARAM_READWRITE);