[gnome-2048] Add new to explicitly hide get method



commit 1eb8a02d9ee3c3ba8e55034d23860968f2f6305d
Author: Juan R. GarcĂ­a Blanco <juanrgar gmail com>
Date:   Thu Feb 12 23:48:19 2015 +0100

    Add new to explicitly hide get method

 src/grid.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/grid.vala b/src/grid.vala
index 52133c4..042e406 100644
--- a/src/grid.vala
+++ b/src/grid.vala
@@ -417,7 +417,7 @@ public class Grid : GLib.Object
     return true;
   }
 
-  public uint get (int row, int col)
+  public new uint get (int row, int col)
   {
     if ((row >= _rows) || (col >= _cols))
       return 0;


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