src/Project/Gtk.vala
authorAlan Knowles <alan@roojs.com>
Tue, 26 May 2015 06:00:40 +0000 (14:00 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 26 May 2015 06:00:40 +0000 (14:00 +0800)
src/Project/Gtk.vala

index a8712aa..cbb017b 100644 (file)
@@ -194,7 +194,7 @@ namespace Project {
                                        var fn = next_file.get_display_name();
                                        
                                        GLib.debug("SCAN %s - checking %s\n", dirname, fn);
-                                       if (!GLib.FileUtils.text(in_path + "/" + fn, GLib.FileTest.IS_REGULAR)) {
+                                       if (!GLib.FileUtils.test(in_path + "/" + fn, GLib.FileTest.IS_REGULAR)) {
                                                continue;
                                        }
                                        ret.add(in_path + "/" + fn);
@@ -277,10 +277,10 @@ namespace Project {
                                        if (Regex.match_simple("\\.o$", fn)) {
                                                continue;
                                        }
-                                       if (Regex.match_simple("~$", fn)) {
+                                       if (Regex.match_simple("\\~$", fn)) {
                                                continue;
                                        }
-                                       if (Regex.match_simple("^.", GLib.File.get_basename(fn))) {
+                                       if (Regex.match_simple("^\\.", GLib.Path.get_basename(fn))) {
                                                continue;
                                        }
                                        if (Regex.match_simple("\\.vala$", fn)) {