Project/Gtk.vala
authorAlan Knowles <alan@roojs.com>
Wed, 19 Nov 2014 13:31:30 +0000 (21:31 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 19 Nov 2014 13:31:30 +0000 (21:31 +0800)
Project/Gtk.vala

index 71c6382..90107bf 100644 (file)
@@ -178,7 +178,7 @@ namespace Project {
 
                }
 
-public static   resolve_path_combine_path(string first, string second)
+public     resolve_path_combine_path(string first, string second)
                {
                        string ret = first;
                        if (first.length > 0 && second.length > 0 && !first.has_suffix("/") && !second.has_prefix("/"))
@@ -187,7 +187,7 @@ public static   resolve_path_combine_path(string first, string second)
                        }
                        return ret + second;
                }
-public static   resolve_path_times(string part, int times, string? clue = null)
+public     resolve_path_times(string part, int times, string? clue = null)
                {
                        string ret = "";
                        for (int i = 0; i < times; i++)