DependTree/Window.js
[app.Builder.js] / DependTree / Window.js
index 1be12dd..2dfa777 100644 (file)
@@ -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]);
             };
             
             
@@ -161,7 +161,6 @@ Window=new XObject({
                                                 {
                                                     xtype: Gtk.ListStore,
                                                     id : "method-list-store",
-                                                    pack : false,
                                                     init : function() 
                                                             {
                                                                 XObject.prototype.init.call(this);