From 0e6f9e88c06dbf2850e093e083ef379bd341a2ea Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 8 May 2014 21:53:27 +0800 Subject: [PATCH] Monitor.vala --- Monitor.vala | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Monitor.vala b/Monitor.vala index 861032a6..3e3bf24e 100644 --- a/Monitor.vala +++ b/Monitor.vala @@ -97,9 +97,7 @@ public class Monitor : Object public void start() { for(int i = 0; i < this.top.length ; i++) { - this.monitor(this.top.index(i), ( fm, f_orig, of_orig, event_type) => { - this.onEvent (fm, f_orig, of_orig, event_type ) ; - } ); + this.monitor(this.top.index(i)); } } /** @@ -135,7 +133,7 @@ public class Monitor : Object * * */ - public void monitor(string path, onEventHander fn , int depth = 0) + public void monitor(string path, int depth = 0) { print("ADD: " + path + "\n"); @@ -159,7 +157,7 @@ public class Monitor : Object fm.changed.connect( ( fm, f_orig, of_orig, event_type) => { //if (fn) { - fn (fm, f_orig, of_orig, event_type ) ; + this.onEvent (fm, f_orig, of_orig, event_type ) ; // return; //} //this.onEvent (fm, f_orig, of_orig, event_type ) ; @@ -222,7 +220,7 @@ public class Monitor : Object - this.monitor(sp, fn, depth + 1); + this.monitor(sp, depth + 1); } try { -- 2.39.2