From 2c4bdc7636a5787a1bf57297f8a2cb5de5bbde99 Mon Sep 17 00:00:00 2001 From: Chris Lord Date: Fri, 15 Feb 2008 16:26:00 +0000 Subject: [PATCH] * clutter/clutter-label.c: (clutter_label_class_init): More documentation fixes --- ChangeLog | 5 +++++ clutter/clutter-label.c | 14 +++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2faa89cd9..03e291e80 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-02-15 Chris Lord + + * clutter/clutter-label.c: (clutter_label_class_init): + More documentation fixes + 2008-02-15 Chris Lord * clutter/clutter-clone-texture.c: diff --git a/clutter/clutter-label.c b/clutter/clutter-label.c index a51afd25f..529eb4ab0 100644 --- a/clutter/clutter-label.c +++ b/clutter/clutter-label.c @@ -562,7 +562,7 @@ clutter_label_class_init (ClutterLabelClass *klass) (gobject_class, PROP_ATTRIBUTES, g_param_spec_boxed ("attributes", "Attributes", - "A list of style attributes to apply to the" + "A list of style attributes to apply to the " "text of the label", PANGO_TYPE_ATTR_LIST, CLUTTER_PARAM_READWRITE)); @@ -570,7 +570,7 @@ clutter_label_class_init (ClutterLabelClass *klass) (gobject_class, PROP_USE_MARKUP, g_param_spec_boolean ("use-markup", "Use markup", - "The text of the label includes XML markup." + "The text of the label includes XML markup. " "See pango_parse_markup()", FALSE, CLUTTER_PARAM_READWRITE)); @@ -585,7 +585,7 @@ clutter_label_class_init (ClutterLabelClass *klass) (gobject_class, PROP_WRAP_MODE, g_param_spec_enum ("wrap-mode", "Line wrap mode", - "If wrap is set, controls how linewrapping is done", + "If wrap is set, controls how line-wrapping is done", PANGO_TYPE_WRAP_MODE, PANGO_WRAP_WORD, CLUTTER_PARAM_READWRITE)); @@ -593,7 +593,7 @@ clutter_label_class_init (ClutterLabelClass *klass) (gobject_class, PROP_ELLIPSIZE, g_param_spec_enum ( "ellipsize", "Ellipsize", - "The preferred place to ellipsize the string," + "The preferred place to ellipsize the string, " "if the label does not have enough room to " "display the entire string", PANGO_TYPE_ELLIPSIZE_MODE, @@ -783,7 +783,7 @@ clutter_label_set_text (ClutterLabel *label, * * Return value: a string containing the font name, in a format * understandable by pango_font_description_from_string(). The - * string is owned by #ClutterLabel and should not be modified + * string is owned by @label and should not be modified * or freed. */ G_CONST_RETURN gchar * @@ -1277,7 +1277,7 @@ clutter_label_set_alignment (ClutterLabel *label, * * Returns the label's text alignment * - * Return value: The labels #PangoAlignment + * Return value: The label's #PangoAlignment * * Since 0.2 **/ @@ -1296,7 +1296,7 @@ clutter_label_get_alignment (ClutterLabel *label) * * Sets whether the text of the @label actor should be justified * on both margins. This setting is ignored if Clutter is compiled - * against Pango > 1.18. + * against Pango < 1.18. * * Since: 0.6 */