[gnome-panel/wip/free-the-fish: 4/8] Free-the-fish: Rename function to free_the_fish()



commit d52eba50c5922b0755686b2ef88afe4591facf99
Author: Sebastian Geiger <sbastig gmx net>
Date:   Tue Jun 2 14:16:50 2015 +0200

    Free-the-fish: Rename function to free_the_fish()

 gnome-panel/free-the-fish.c      |    2 +-
 gnome-panel/free-the-fish.h      |    2 +-
 gnome-panel/panel-context-menu.c |    2 +-
 gnome-panel/panel-run-dialog.c   |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/gnome-panel/free-the-fish.c b/gnome-panel/free-the-fish.c
index 7f18f44..6c3efbe 100644
--- a/gnome-panel/free-the-fish.c
+++ b/gnome-panel/free-the-fish.c
@@ -374,7 +374,7 @@ check_screen_timeout (gpointer data)
 }
 
 void
-start_screen_check(void)
+free_the_fish(void)
 {
         if (screen_check_id > 0)
                 g_source_remove (screen_check_id);
diff --git a/gnome-panel/free-the-fish.h b/gnome-panel/free-the-fish.h
index 2b9d9c3..fbef856 100644
--- a/gnome-panel/free-the-fish.h
+++ b/gnome-panel/free-the-fish.h
@@ -5,7 +5,7 @@
 
 G_BEGIN_DECLS
 
-void start_screen_check (void);
+void free_the_fish(void);
 
 G_END_DECLS
 
diff --git a/gnome-panel/panel-context-menu.c b/gnome-panel/panel-context-menu.c
index 125fbae..8819c95 100644
--- a/gnome-panel/panel-context-menu.c
+++ b/gnome-panel/panel-context-menu.c
@@ -83,7 +83,7 @@ panel_context_menu_check_for_screen (GtkWidget *w,
                times++;
                if (times == 3) {
                        times = 0;
-                       start_screen_check ();
+                       free_the_fish();
                }
        }
        return FALSE;
diff --git a/gnome-panel/panel-run-dialog.c b/gnome-panel/panel-run-dialog.c
index 1d7fca2..4f07710 100644
--- a/gnome-panel/panel-run-dialog.c
+++ b/gnome-panel/panel-run-dialog.c
@@ -530,7 +530,7 @@ panel_run_dialog_execute (PanelRunDialog *dialog)
        
        /* evil eggies, do not translate! */
        if (!strcmp (command, "free the fish")) {
-               start_screen_check ();
+               free_the_fish();
 
                g_free (command);
                gtk_widget_destroy (dialog->run_dialog);


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