X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=hildon%2Fhildon-animation-actor.c;fp=hildon%2Fhildon-animation-actor.c;h=beaf8f52a7c63129293f1c7b48eee8d9814e74ac;hb=def342ec2f575672c9d934add737213369bd693d;hp=834c4373ae635ee4333a09611a5eaa30ff8b8730;hpb=635fa9fb090aa6ef92ce241e361f5ee5dcd2b3b6;p=hildon diff --git a/hildon/hildon-animation-actor.c b/hildon/hildon-animation-actor.c index 834c437..beaf8f5 100644 --- a/hildon/hildon-animation-actor.c +++ b/hildon/hildon-animation-actor.c @@ -264,7 +264,7 @@ hildon_animation_actor_show (GtkWidget *widget) HildonAnimationActor *self = HILDON_ANIMATION_ACTOR (widget); GTK_WIDGET_CLASS (hildon_animation_actor_parent_class)->show (widget); - hildon_animation_actor_set_show (self, 1); + hildon_animation_actor_set_show (self, TRUE); } static void @@ -272,7 +272,7 @@ hildon_animation_actor_hide (GtkWidget *widget) { HildonAnimationActor *self = HILDON_ANIMATION_ACTOR (widget); - hildon_animation_actor_set_show (self, 0); + hildon_animation_actor_set_show (self, FALSE); GTK_WIDGET_CLASS (hildon_animation_actor_parent_class)->hide (widget); } @@ -622,7 +622,7 @@ hildon_animation_actor_send_message (HildonAnimationActor *self, **/ void hildon_animation_actor_set_show_full (HildonAnimationActor *self, - gint show, + gboolean show, gint opacity) { HildonAnimationActorPrivate @@ -668,7 +668,7 @@ hildon_animation_actor_set_show_full (HildonAnimationActor *self, **/ void hildon_animation_actor_set_show (HildonAnimationActor *self, - gint show) + gboolean show) { HildonAnimationActorPrivate *priv = HILDON_ANIMATION_ACTOR_GET_PRIVATE (self);