2008-06-16 Tomas Frydrych <tf@openedhand.com>

* clutter/clutter-actor.c:
	    (clutter_actor_move_anchor_point):
	    (clutter_actor_move_anchor_pointu):
	    (clutter_actor_move_anchor_point_from_gravity):
	    Fixed incorrect sign of position adjustment.
	    Fixed replace call to _move_by with move_byu in
	    _move_anchor_pointu.

	    Stripped trailing whitespace.
This commit is contained in:
Tomas Frydrych 2008-06-16 09:27:44 +00:00
parent 8996406189
commit 1c4b1ce90e
2 changed files with 44 additions and 32 deletions

View File

@ -1,3 +1,15 @@
2008-06-16 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-actor.c:
(clutter_actor_move_anchor_point):
(clutter_actor_move_anchor_pointu):
(clutter_actor_move_anchor_point_from_gravity):
Fixed incorrect sign of position adjustment.
Fixed replace call to _move_by with move_byu in
_move_anchor_pointu.
Stripped trailing whitespace.
2008-06-15 Emmanuele Bassi <ebassi@openedhand.com>
Bug #967 - Mismatch of Timeline::marker-reached signal signature

View File

@ -6033,7 +6033,7 @@ clutter_actor_move_anchor_point (ClutterActor *self,
priv->anchor_y = ay;
if (priv->position_set)
clutter_actor_move_by (self, -dx, -dy);
clutter_actor_move_byu (self, dx, dy);
}
/**
@ -6136,7 +6136,7 @@ clutter_actor_move_anchor_pointu (ClutterActor *self,
priv->anchor_y = anchor_y;
if (priv->position_set)
clutter_actor_move_byu (self, -dx, -dy);
clutter_actor_move_byu (self, dx, dy);
}
/**
@ -6199,7 +6199,7 @@ clutter_actor_move_anchor_point_from_gravity (ClutterActor *self,
if (priv->position_set)
{
clutter_actor_move_byu (self, -dx, -dy);
clutter_actor_move_byu (self, dx, dy);
}
}