From e16c52f169d4ac379dcd4fbd41adb1d59b138fe2 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 1 May 2014 22:37:30 +0800 Subject: [PATCH] Monitor.vala --- Monitor.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Monitor.vala b/Monitor.vala index 7fe1c3c3..de7382b4 100644 --- a/Monitor.vala +++ b/Monitor.vala @@ -67,8 +67,8 @@ public class Monitor : Object { - this.monitors = new ArrayList (); - this.top = new ArrayList (); + this.monitors = new Array (); + this.top = new Array (); this.paused = false; } @@ -103,7 +103,7 @@ public class Monitor : Object for(int i = 0; i < this.monitors.size ; i++) { this.monitors[i].cancel(); } - this.monitors = new ArrayList(); // clean /destroy/ kill old? + this.monitors = new Array(); // clean /destroy/ kill old? } /** * pause monitoring - without changing what's monitored -- 2.39.2