From: Alan Knowles Date: Thu, 2 Dec 2010 11:24:28 +0000 (+0800) Subject: DependTree/Window.js X-Git-Url: http://git.roojs.org/?p=app.Builder.js;a=commitdiff_plain;h=52d24428dd10e2250c317c5d757834234c20d055 DependTree/Window.js --- diff --git a/DependTree/Window.js b/DependTree/Window.js index 26a42beea..b3b8a79e2 100644 --- a/DependTree/Window.js +++ b/DependTree/Window.js @@ -130,7 +130,20 @@ Window=new XObject({ items : [ { xtype: Gtk.ListStore, - id : "method-list-store" + id : "method-list-store", + init : function() + { + XObject.prototype.init.call(this); + this.el.set_column_types ( 6, [ + GObject.TYPE_STRING, + GObject.TYPE_BOOLEAN, + GObject.TYPE_STRING, + GObject.TYPE_STRING, + GObject.TYPE_STRING, + GObject.TYPE_STRING + ] ); + + } }, { xtype: Gtk.TreeViewColumn, @@ -179,7 +192,20 @@ Window=new XObject({ items : [ { xtype: Gtk.ListStore, - id : "children-list-store" + id : "children-list-store", + init : function() + { + XObject.prototype.init.call(this); + this.el.set_column_types ( 6, [ + GObject.TYPE_STRING, + GObject.TYPE_BOOLEAN, + GObject.TYPE_STRING, + GObject.TYPE_STRING, + GObject.TYPE_STRING, + GObject.TYPE_STRING + ] ); + + } }, { xtype: Gtk.TreeViewColumn,