[gnome-chess] Rename save_cb() -> save_dialog_cb()



commit 99dcf295eb998da78d6d31645616eca910573557
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Mon Jan 6 16:10:09 2014 -0600

    Rename save_cb() -> save_dialog_cb()

 src/gnome-chess.vala |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/gnome-chess.vala b/src/gnome-chess.vala
index e0c244d..0ed0102 100644
--- a/src/gnome-chess.vala
+++ b/src/gnome-chess.vala
@@ -1877,7 +1877,7 @@ public class Application : Gtk.Application
         add_info_bar_to_dialog (save_dialog, out save_dialog_info_bar, out save_dialog_error_label);
 
         save_dialog.file_activated.connect (save_file_cb);        
-        save_dialog.response.connect (save_cb);
+        save_dialog.response.connect (save_dialog_cb);
 
         if (saved_filename != null)
             save_dialog.set_filename (saved_filename);
@@ -1903,7 +1903,7 @@ public class Application : Gtk.Application
 
     private void save_file_cb ()
     {
-        save_cb (Gtk.ResponseType.OK);
+        save_dialog_cb (Gtk.ResponseType.OK);
     }
 
     private void update_pgn_time_remaining ()
@@ -1920,7 +1920,7 @@ public class Application : Gtk.Application
         }
     }
 
-    private void save_cb (int response_id)
+    private void save_dialog_cb (int response_id)
     {
         if (response_id == Gtk.ResponseType.OK)
         {


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