GitMonitor.vala
authorAlan Knowles <alan@akbkhome.com>
Sat, 10 May 2014 11:37:49 +0000 (19:37 +0800)
committerAlan Knowles <alan@akbkhome.com>
Sat, 10 May 2014 11:37:49 +0000 (19:37 +0800)
GitMonitor.vala

index eba2e32..394abb7 100644 (file)
@@ -116,14 +116,14 @@ public class GitMonitor : Monitor
     public void pause() {
         this.paused = true;
         // what does this do to the old one...
-        this.queue = new Array<FileMonitor> ();
+        this.queue = new Array<GitMonitorQueue> ();
         StatusIcon.statusicon.set_from_stock( Gtk.Stock.MEDIA_PAUSE );
 
     }
     
     public void resume () {
         this.paused = false;
-        this.queue = new Array<FileMonitor> ();
+        this.queue = new Array<GitMonitorQueue> ();
         StatusIcon.statusicon.set_from_stock( Gtk.Stock.MEDIA_PLAY );