[gnome-chess] ChessClock: fix harmless find/replace fail



commit 97301b0142d113c9e5011cf3287a339741f55feb
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Sat Nov 2 16:22:57 2013 -0500

    ChessClock: fix harmless find/replace fail

 src/chess-clock.vala |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/chess-clock.vala b/src/chess-clock.vala
index 1554974..05c67cd 100644
--- a/src/chess-clock.vala
+++ b/src/chess-clock.vala
@@ -41,10 +41,10 @@ public class ChessClock : Object
     public signal void tick ();
     public signal void expired ();
 
-    public ChessClock (int white_initial_seconds_seconds, int black_initial_seconds_seconds)
+    public ChessClock (int white_initial_seconds, int black_initial_seconds)
     {
-        white_initial_seconds = white_initial_seconds_seconds;
-        black_initial_seconds = black_initial_seconds_seconds;
+        this.white_initial_seconds = white_initial_seconds;
+        this.black_initial_seconds = black_initial_seconds;
     }
 
     private bool is_active


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