GitRepo.vala
authorAlan Knowles <alan@roojs.com>
Wed, 19 Dec 2018 04:36:53 +0000 (12:36 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 19 Dec 2018 04:36:53 +0000 (12:36 +0800)
GitRepo.vala

index 048bc47..7860339 100644 (file)
@@ -29,6 +29,7 @@ public class GitRepo : Object
     public Gee.HashMap<string,GitBranch> branches; // accessed in GitBranch..
        public RooTicket? activeTicket;
     public  Gee.HashMap<string,GitRepo> cache;
+    public  Gee.HashMap<string,string> config_cache;
     
     
     
@@ -872,7 +873,7 @@ public class GitRepo : Object
                        }
            repo.update_async(updateAllCallback); 
         } 
-               GLib.debug("calls total = %d", update_all_total);
+               GLib.debug("calls total = %d", (int) update_all_total);
     }
     public static void  updateAllCallback(GitRepo repo, int err, string res)
     {
@@ -880,7 +881,7 @@ public class GitRepo : Object
        repo.loadStatus();
        
        update_all_total--;
-               GLib.debug("calls remaining = %d", update_all_total);           
+               GLib.debug("calls remaining = %d", (int)update_all_total);      
        if (update_all_total > 0 ) {
 
                return;