[libgames-support] scores: Save scores after running the dialog
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgames-support] scores: Save scores after running the dialog
- Date: Sun, 22 Feb 2015 19:19:36 +0000 (UTC)
commit 5c0ea590690f38de6e7e9af6b41dee739210150b
Author: Michael Catanzaro <mcatanzaro gnome org>
Date: Sun Feb 22 13:18:57 2015 -0600
scores: Save scores after running the dialog
https://bugzilla.gnome.org/show_bug.cgi?id=744872
scores/context.vala | 17 +++++------------
1 files changed, 5 insertions(+), 12 deletions(-)
---
diff --git a/scores/context.vala b/scores/context.vala
index 96a7bbc..ee81a46 100644
--- a/scores/context.vala
+++ b/scores/context.vala
@@ -88,16 +88,6 @@ public class Context : Object
}
list_scores.foreach ((x) => scores_of_this_category.add (x));
-
- try
- {
- if (score != null)
- save_score_to_file (score, category);
- }
- catch (Error e)
- {
- warning ("%s", e.message);
- }
}
/* Get a maximum of best n scores from the given category */
@@ -290,7 +280,7 @@ public class Context : Object
return score_value > lowest;
}
- internal void run_dialog_internal (Score? new_high_score)
+ internal void run_dialog_internal (Score? new_high_score) throws Error
requires (game_window != null)
{
if (!scores_loaded_from_file)
@@ -309,9 +299,12 @@ public class Context : Object
var dialog = new Dialog (this, dialog_label, style, new_high_score, current_category, game_window);
dialog.run ();
dialog.destroy ();
+
+ if (new_high_score != null)
+ save_score_to_file (new_high_score, current_category);
}
- public void run_dialog ()
+ public void run_dialog () throws Error
{
run_dialog_internal (null);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]