From: Alan Knowles Date: Wed, 8 Dec 2010 09:47:32 +0000 (+0800) Subject: DependTree/Window.js X-Git-Url: http://git.roojs.org/?p=app.Builder.js;a=commitdiff_plain;h=29af9db99c3d8f006ab6291d89b182e4d871b9c9 DependTree/Window.js --- diff --git a/DependTree/Window.js b/DependTree/Window.js index 18df27b7d..2dfa77724 100644 --- a/DependTree/Window.js +++ b/DependTree/Window.js @@ -22,17 +22,17 @@ Window=new XObject({ var ls = this.get('method-list-store'); this.data.allmethods.forEach(function(v) { - ls.append( [ v ]); + ls.append( [ v , 0, 1 ]); }); var ls = this.get('children-list-store'); this.data.allchildren.forEach(function(v) { - ls.append( [ v ]); + ls.append( [ v , 0, 1]); }); var ls = this.get('class-list-store'); var i =0; for (var c in this.data.methods) { i++; - ls.append( [ c , true , i > 10 ? true : false]); + ls.append( [ c , true , i > 10 ? 1 : 0]); };