[gnome-photos] error-box: Mark static method as such



commit 9181908164a473ef979e1fd949a076231d5547ed
Author: Debarshi Ray <debarshir gnome org>
Date:   Mon Aug 13 23:39:20 2012 +0200

    error-box: Mark static method as such

 src/photos-error-box.c |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/src/photos-error-box.c b/src/photos-error-box.c
index e44e91a..b93c8b8 100644
--- a/src/photos-error-box.c
+++ b/src/photos-error-box.c
@@ -40,6 +40,19 @@ G_DEFINE_TYPE (PhotosErrorBox, photos_error_box, GTK_CLUTTER_TYPE_ACTOR);
 
 
 static void
+photos_error_box_move_out_completed (PhotosErrorBox *self)
+{
+  ClutterActor *parent;
+
+  parent = clutter_actor_get_parent (CLUTTER_ACTOR (self));
+  if (parent == NULL)
+    return;
+
+  clutter_actor_set_child_below_sibling (parent, CLUTTER_ACTOR (self), NULL);
+}
+
+
+static void
 photos_error_box_dispose (GObject *object)
 {
   PhotosErrorBox *self = PHOTOS_ERROR_BOX (object);
@@ -128,19 +141,6 @@ photos_error_box_move_in (PhotosErrorBox *self)
 
 
 void
-photos_error_box_move_out_completed (PhotosErrorBox *self)
-{
-  ClutterActor *parent;
-
-  parent = clutter_actor_get_parent (CLUTTER_ACTOR (self));
-  if (parent == NULL)
-    return;
-
-  clutter_actor_set_child_below_sibling (parent, CLUTTER_ACTOR (self), NULL);
-}
-
-
-void
 photos_error_box_move_out (PhotosErrorBox *self)
 {
   ClutterAnimation *animation;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]