[four-in-a-row: 59/72] changed tabs to spaces



commit dcd130d809a08de70e8397c40871638edc712186
Author: Jacob Humphrey <jacob ryan humphrey gmail com>
Date:   Sat Dec 15 16:41:41 2018 -0600

    changed tabs to spaces

 src/four-in-a-row.vala | 8 ++++----
 src/game-board.vala    | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/four-in-a-row.vala b/src/four-in-a-row.vala
index a7e4322..fa89abb 100644
--- a/src/four-in-a-row.vala
+++ b/src/four-in-a-row.vala
@@ -448,11 +448,11 @@ class FourInARow : Gtk.Application {
 
     class NextMove {
         int c;
-               FourInARow application;
+        FourInARow application;
 
         public NextMove(int c, FourInARow application) {
             this.c = c;
-                       this.application = application;
+            this.application = application;
         }
 
         public bool exec() {
@@ -542,10 +542,10 @@ class FourInARow : Gtk.Application {
 
     class Animate {
         int c;
-               FourInARow application;
+        FourInARow application;
         public Animate(int c, FourInARow application) {
             this.c = c;
-                       this.application = application;
+            this.application = application;
         }
 
         public bool exec() {
diff --git a/src/game-board.vala b/src/game-board.vala
index c54e4de..af178d5 100644
--- a/src/game-board.vala
+++ b/src/game-board.vala
@@ -31,7 +31,7 @@ class Board : Object {
         gboard[x,y] = tile;
     }
 
-       public new Tile @get(int x, int y) {
+    public new Tile @get(int x, int y) {
         return gboard[x, y];
     }
 


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