GitMonitor.vala
authorAlan Knowles <alan@roojs.com>
Thu, 8 May 2014 15:10:12 +0000 (23:10 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 8 May 2014 15:10:12 +0000 (23:10 +0800)
GitMonitor.vala

index 6ba2645..281ae24 100644 (file)
@@ -245,7 +245,7 @@ public class GitMonitor : Monitor
         var done = new Array<GitMontitorQueue>();
         
         // first build a array of repo's to work with
-        var repo_list = new Array<GitMontitorRepo>();
+        var repo_list = new Array<GitRepo>();
         
         // pull and group.
         
@@ -258,7 +258,7 @@ public class GitMonitor : Monitor
             var gitpath = cmd.gitpath; 
             var ix  = GitMontitorRepo.indexOf(this.repos,  cmd.gitpath);
             if (ix < 0) {
-                    repo_list.append_val(new GitMontitorRepo( gitpath ));
+                    repo_list.append_val(new GitRepo( gitpath ));
                     ix = GitMontitorRepo.indexOf(this.repos,  cmd.gitpath);
             }