HildonAnimationActor: make the "show" parameter a gboolean
[hildon] / hildon / hildon-animation-actor-private.h
index 6ab3763..dbdb208 100644 (file)
@@ -35,45 +35,45 @@ typedef struct                                  _HildonAnimationActorPrivate Hil
 
 struct                                          _HildonAnimationActorPrivate
 {
-    guint   ready : 1;
+    guint      ready : 1;
 
-    guint   set_show : 1;
-    guint   set_position : 1;
-    guint   set_rotation : 3;
-    guint   set_scale : 1;
-    guint   set_anchor : 1;
-    guint   set_parent : 1;
+    guint      set_show : 1;
+    guint      set_position : 1;
+    guint      set_rotation : 3;
+    guint      set_scale : 1;
+    guint      set_anchor : 1;
+    guint      set_parent : 1;
 
-    guint   show;
-    guint   opacity;
+    gboolean   show;
+    guint      opacity;
 
-    guint   gravity;
-    guint   anchor_x;
-    guint   anchor_y;
+    guint      gravity;
+    guint      anchor_x;
+    guint      anchor_y;
 
-    guint   position_x;
-    guint   position_y;
-    guint   depth;
+    guint      position_x;
+    guint      position_y;
+    guint      depth;
 
-    guint32 x_rotation_angle;
-    guint   x_rotation_y;
-    guint   x_rotation_z;
+    guint32    x_rotation_angle;
+    guint      x_rotation_y;
+    guint      x_rotation_z;
 
-    guint32 y_rotation_angle;
-    guint   y_rotation_x;
-    guint   y_rotation_z;
+    guint32    y_rotation_angle;
+    guint      y_rotation_x;
+    guint      y_rotation_z;
 
-    guint32 z_rotation_angle;
-    guint   z_rotation_x;
-    guint   z_rotation_y;
+    guint32    z_rotation_angle;
+    guint      z_rotation_x;
+    guint      z_rotation_y;
 
-    guint32 scale_x;
-    guint32 scale_y;
+    guint32    scale_x;
+    guint32    scale_y;
 
-    GtkWindow* parent;
-    gulong  parent_map_event_cb_id;
+    GtkWindow *parent;
+    gulong     parent_map_event_cb_id;
 
-    gulong  map_event_cb_id;
+    gulong     map_event_cb_id;
 };
 
 G_END_DECLS