From 01b93537ab9743dfd6aa2f0c3d4499420ee860cd Mon Sep 17 00:00:00 2001 From: Alexandre Quessy Date: Thu, 25 Nov 2010 13:13:51 -0500 Subject: [PATCH] Fixed "the the" repetitions in some doc strings http://bugzilla.clutter-project.org/show_bug.cgi?id=2450 --- clutter/clutter-actor.c | 6 +++--- clutter/clutter-stage.c | 2 +- clutter/clutter-text.c | 2 +- clutter/cogl/cogl/cogl-fixed.c | 2 +- clutter/cogl/cogl/cogl-vertex-buffer.c | 2 +- doc/cookbook/animations.xml | 2 +- doc/cookbook/events.xml | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/clutter/clutter-actor.c b/clutter/clutter-actor.c index 9acb8aeb1..607b9dcd0 100644 --- a/clutter/clutter-actor.c +++ b/clutter/clutter-actor.c @@ -164,7 +164,7 @@ * In order to access a specific #ClutterAction or a #ClutterConstraint * property it is necessary to set the #ClutterActorMeta:name property on the * given action or constraint. - * The property can be accessed using the the following syntax: + * The property can be accessed using the following syntax: * * * @<section>.<meta-name>.<property-name> @@ -7205,7 +7205,7 @@ clutter_actor_set_depth (ClutterActor *self, /* We need to resort the container stacking order as to * correctly render alpha values. * - * FIXME: This is sub-optimal. maybe queue the the sort + * FIXME: This is sub-optimal. maybe queue the sort * before stacking */ parent = CLUTTER_CONTAINER (priv->parent_actor); @@ -10787,7 +10787,7 @@ clutter_actor_pop_internal (ClutterActor *self) * clutter_actor_has_pointer: * @self: a #ClutterActor * - * Checks whether an actor contains the the pointer of a + * Checks whether an actor contains the pointer of a * #ClutterInputDevice * * Return value: %TRUE if the actor contains the pointer, and diff --git a/clutter/clutter-stage.c b/clutter/clutter-stage.c index 9a7dbd65d..b3d8a6fbb 100644 --- a/clutter/clutter-stage.c +++ b/clutter/clutter-stage.c @@ -2409,7 +2409,7 @@ clutter_stage_get_key_focus (ClutterStage *stage) * * Gets whether the depth cueing effect is enabled on @stage. * - * Return value: %TRUE if the the depth cueing effect is enabled + * Return value: %TRUE if the depth cueing effect is enabled * * Since: 0.6 */ diff --git a/clutter/clutter-text.c b/clutter/clutter-text.c index f64cf5e42..4f7628939 100644 --- a/clutter/clutter-text.c +++ b/clutter/clutter-text.c @@ -4987,7 +4987,7 @@ clutter_text_get_chars (ClutterText *self, * mode. * * A text actor in single line mode will not wrap text and will clip - * the the visible area to the predefined size. The contents of the + * the visible area to the predefined size. The contents of the * text actor will scroll to display the end of the text if its length * is bigger than the allocated width. * diff --git a/clutter/cogl/cogl/cogl-fixed.c b/clutter/cogl/cogl/cogl-fixed.c index 8864d5c49..99c7d5b64 100644 --- a/clutter/cogl/cogl/cogl-fixed.c +++ b/clutter/cogl/cogl/cogl-fixed.c @@ -893,7 +893,7 @@ unsigned int cogl_fixed_pow2 (CoglFixed x) { /* Note: we could easily have a version that produces CoglFixed result, - * but the the range would be limited to x < 15, and the int precision + * but the range would be limited to x < 15, and the int precision * is enough for the current purposes. */ diff --git a/clutter/cogl/cogl/cogl-vertex-buffer.c b/clutter/cogl/cogl/cogl-vertex-buffer.c index 09f5a2038..a7788439d 100644 --- a/clutter/cogl/cogl/cogl-vertex-buffer.c +++ b/clutter/cogl/cogl/cogl-vertex-buffer.c @@ -740,7 +740,7 @@ filter_already_submitted_attribute (CoglVertexBufferAttrib *attribute, /* Mark all but the matched attribute as UNUSED, so that when we * finish filtering all our attributes any attrributes still - * marked as UNUSED can be removed from the their cogl_vbo */ + * marked as UNUSED can be removed from their cogl_vbo */ for (tmp2 = cogl_vbo->attributes; tmp2 != NULL; tmp2 = tmp2->next) { CoglVertexBufferAttrib *vbo_attribute = tmp2->data; diff --git a/doc/cookbook/animations.xml b/doc/cookbook/animations.xml index ffcaa649d..644b0d1bb 100644 --- a/doc/cookbook/animations.xml +++ b/doc/cookbook/animations.xml @@ -2082,7 +2082,7 @@ clutter_actor_set_anchor_point (actor, 50.0, 0.0); A ClutterAnimator is used to move each of the rectangles to x = 225.0. Although the three rectangles move to the same position on the - x axis, it's actually the the anchor points + x axis, it's actually the anchor points which are at the same position. These all align on the x axis with the left-hand edge of the green rectangle. diff --git a/doc/cookbook/events.xml b/doc/cookbook/events.xml index b6e889023..bc11b612b 100644 --- a/doc/cookbook/events.xml +++ b/doc/cookbook/events.xml @@ -39,7 +39,7 @@ the source of the event; the bubble phase, which consists in an emission of the event signal starting from - the the source of the event to, following the parent-child + the source of the event to, following the parent-child relationship, the stage.