bin-layer: Fix the property blurbs
authorDamien Lespiau <damien.lespiau@intel.com>
Tue, 5 Oct 2010 06:44:49 +0000 (07:44 +0100)
committerDamien Lespiau <damien.lespiau@intel.com>
Tue, 5 Oct 2010 06:50:52 +0000 (07:50 +0100)
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.

clutter/clutter-bin-layout.c

index e9223e8..971a8f4 100644 (file)
@@ -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);