[gnome-chess] Rename save_game() to present_save_dialog()
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-chess] Rename save_game() to present_save_dialog()
- Date: Mon, 6 Jan 2014 23:59:24 +0000 (UTC)
commit 92c49ec94ac97d76a6c33438a3c87526886f8bcf
Author: Michael Catanzaro <mcatanzaro gnome org>
Date: Mon Jan 6 16:05:07 2014 -0600
Rename save_game() to present_save_dialog()
src/gnome-chess.vala | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
---
diff --git a/src/gnome-chess.vala b/src/gnome-chess.vala
index 4779a9b..e0c244d 100644
--- a/src/gnome-chess.vala
+++ b/src/gnome-chess.vala
@@ -1235,7 +1235,7 @@ public class Application : Gtk.Application
else if (result == Gtk.ResponseType.YES)
{
/* Your very last chance to save */
- save_game (_("_Discard"), _("_Save"));
+ present_save_dialog (_("_Discard"), _("_Save"));
}
else
{
@@ -1816,7 +1816,7 @@ public class Application : Gtk.Application
{
if (saved_filename == null)
{
- save_game ();
+ present_save_dialog ();
return;
}
@@ -1828,13 +1828,13 @@ public class Application : Gtk.Application
}
catch (Error e)
{
- save_game ();
+ present_save_dialog ();
}
}
public void save_game_as_cb ()
{
- save_game ();
+ present_save_dialog ();
}
private void add_info_bar_to_dialog (Gtk.Dialog dialog, out Gtk.InfoBar info_bar, out Gtk.Label label)
@@ -1859,7 +1859,8 @@ public class Application : Gtk.Application
dialog.add (vbox);
}
- private void save_game (string cancel_button_label = N_("_Cancel"), string save_button_label =
N_("_Save"))
+ private void present_save_dialog (string cancel_button_label = N_("_Cancel"),
+ string save_button_label = N_("_Save"))
{
/* Show active dialog */
if (save_dialog != null)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]