Project/Gtk.vala
authorAlan Knowles <alan@akbkhome.com>
Sat, 29 Nov 2014 15:07:39 +0000 (23:07 +0800)
committerAlan Knowles <alan@akbkhome.com>
Sat, 29 Nov 2014 15:07:39 +0000 (23:07 +0800)
Project/Gtk.vala

index bfe5375..f0fe78d 100644 (file)
@@ -178,7 +178,14 @@ namespace Project {
 
                }
 
-public   string  resolve_path_combine_path(string first, string second)
+               public Gee.ArrayList<string> files(string path)
+               {
+                       
+
+               }
+               
+
+               public   string  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 +194,7 @@ public   string  resolve_path_combine_path(string first, string second)
                        }
                        return ret + second;
                }
-public   string  resolve_path_times(string part, int times, string? clue = null)
+               public   string  resolve_path_times(string part, int times, string? clue = null)
                {
                        string ret = "";
                        for (int i = 0; i < times; i++)
@@ -241,6 +248,8 @@ public   string  resolve_path_times(string part, int times, string? clue = null)
                        }
                        return path;
                }
+               
+               
                        
 
        }