[gnome-builder] animation: use unsigned to match types
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder] animation: use unsigned to match types
- Date: Mon, 7 Mar 2016 23:38:29 +0000 (UTC)
commit b87edb07f583c4d3a1695a495f1b8c6a10f7228d
Author: Christian Hergert <christian hergert me>
Date: Mon Mar 7 15:35:52 2016 -0800
animation: use unsigned to match types
contrib/egg/egg-animation.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/contrib/egg/egg-animation.c b/contrib/egg/egg-animation.c
index d3008a1..efed567 100644
--- a/contrib/egg/egg-animation.c
+++ b/contrib/egg/egg-animation.c
@@ -229,7 +229,7 @@ egg_animation_load_begin_values (EggAnimation *animation)
{
GtkContainer *container;
Tween *tween;
- gint i;
+ guint i;
g_return_if_fail (EGG_IS_ANIMATION (animation));
@@ -268,7 +268,7 @@ static void
egg_animation_unload_begin_values (EggAnimation *animation)
{
Tween *tween;
- gint i;
+ guint i;
g_return_if_fail (EGG_IS_ANIMATION (animation));
@@ -457,7 +457,7 @@ egg_animation_tick (EggAnimation *animation,
gdouble alpha;
GValue value = { 0 };
Tween *tween;
- gint i;
+ guint i;
g_return_val_if_fail (EGG_IS_ANIMATION (animation), FALSE);
@@ -759,7 +759,7 @@ egg_animation_finalize (GObject *object)
{
EggAnimation *self = EGG_ANIMATION (object);
Tween *tween;
- gint i;
+ guint i;
for (i = 0; i < self->tweens->len; i++)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]