From 63bebafeb54352632e42949cdb398c07a901abbe Mon Sep 17 00:00:00 2001 From: Emmanuel Rodriguez Date: Sun, 12 Apr 2009 18:58:45 +0200 Subject: [PATCH] Register the property "single-line-mode" and fix the doc. - The property "single-line-mode" is now registered - Updated the GTK-doc of the properties --- champlain/champlain-marker.c | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/champlain/champlain-marker.c b/champlain/champlain-marker.c index f59a945..b100840 100644 --- a/champlain/champlain-marker.c +++ b/champlain/champlain-marker.c @@ -326,7 +326,7 @@ champlain_marker_class_init (ChamplainMarkerClass *markerClass) /** * ChamplainMarker:wrap: * - * If the marker's text wrap + * If the marker's text wrap is set * * Since: 0.4 */ @@ -337,7 +337,7 @@ champlain_marker_class_init (ChamplainMarkerClass *markerClass) /** * ChamplainMarker:wrap-mode: * - * If the marker's text wrap mode + * The marker's text wrap mode * * Since: 0.4 */ @@ -348,7 +348,7 @@ champlain_marker_class_init (ChamplainMarkerClass *markerClass) /** * ChamplainMarker:ellipsize: * - * If the marker's ellipsize mode + * The marker's ellipsize mode * * Since: 0.4 */ @@ -359,12 +359,23 @@ champlain_marker_class_init (ChamplainMarkerClass *markerClass) /** * ChamplainMarker:draw-background: * - * If the marker's has a background + * If the marker has a background * * Since: 0.4 */ g_object_class_install_property (object_class, PROP_DRAW_BACKGROUND, - g_param_spec_boolean ("draw-background", "Draw Background", "The marker's has a background", + g_param_spec_boolean ("draw-background", "Draw Background", "The marker has a background", + TRUE, CHAMPLAIN_PARAM_READWRITE)); + + /** + * ChamplainMarker:single-line-mode: + * + * If the marker is in single line mode + * + * Since: 0.4 + */ + g_object_class_install_property (object_class, PROP_SINGLE_LINE_MODE, + g_param_spec_boolean ("single-line-mode", "Single Line Mode", "The marker's single line mode", TRUE, CHAMPLAIN_PARAM_READWRITE)); } -- 2.39.5