DependTree/Window.js
[app.Builder.js] / DependTree / Window.js
index e6f2d12..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]);
             };
             
             
@@ -167,14 +167,13 @@ Window=new XObject({
                                                                 this.el.set_column_types ( 6, [
                                                                     GObject.TYPE_STRING, 
                                                                     GObject.TYPE_BOOLEAN, 
-                                                                    GObject.TYPE_STRING
+                                                                    GObject.TYPE_BOOLEAN
                                                                     GObject.TYPE_STRING, 
                                                                     GObject.TYPE_STRING, 
                                                                     GObject.TYPE_STRING 
                                                                 ] );
                                                                 
-                                                            },
-                                                    pack : false
+                                                            }
                                                 }
                                             ]
                                         },