changeset 2398:b3a4872334da

Make animation functions static.
author Christian Heckendorf <heckendorfc@gmail.com>
date Sat, 27 Aug 2016 20:32:46 -0400
parents e371af9d2caf
children a3038f034c47
files src/layout_image.c
diffstat 1 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/layout_image.c	Sat Aug 27 14:32:33 2016 -0400
+++ b/src/layout_image.c	Sat Aug 27 20:32:46 2016 -0400
@@ -49,9 +49,9 @@
 
 static GtkWidget *layout_image_pop_menu(LayoutWindow *lw);
 static void layout_image_set_buttons(LayoutWindow *lw);
-void layout_image_animate_stop(LayoutWindow *lw);
-gboolean layout_image_animate_new_file(LayoutWindow *lw);
-void layout_image_animate_update_image(LayoutWindow *lw);
+static void layout_image_animate_stop(LayoutWindow *lw);
+static gboolean layout_image_animate_new_file(LayoutWindow *lw);
+static void layout_image_animate_update_image(LayoutWindow *lw);
 
 /*
  *----------------------------------------------------------------------------
@@ -335,7 +335,7 @@
 	return TRUE;
 }
 
-gboolean layout_image_animate_check(LayoutWindow *lw)
+static gboolean layout_image_animate_check(LayoutWindow *lw)
 {
 	if (!layout_valid(&lw)) return FALSE;
 
@@ -352,7 +352,7 @@
 	return TRUE;
 }
 
-void layout_image_animate_stop(LayoutWindow *lw)
+static void layout_image_animate_stop(LayoutWindow *lw)
 {
 	if (!layout_valid(&lw)) return;
 
@@ -363,7 +363,7 @@
 		}
 }
 
-void layout_image_animate_update_image(LayoutWindow *lw)
+static void layout_image_animate_update_image(LayoutWindow *lw)
 {
 	if (!layout_valid(&lw)) return;
 
@@ -376,7 +376,7 @@
 		}
 }
 
-gboolean layout_image_animate_new_file(LayoutWindow *lw)
+static gboolean layout_image_animate_new_file(LayoutWindow *lw)
 {
 	GError *err=NULL;
 
@@ -405,7 +405,7 @@
 	return TRUE;
 }
 
-void layout_image_animate_toggle(LayoutWindow *lw)
+static void layout_image_animate_toggle(LayoutWindow *lw)
 {
 	if (!lw) return;