XObjectBase/GtkListStore.js
authorAlan Knowles <alan@akkbhome.com>
Wed, 1 Dec 2010 13:22:25 +0000 (21:22 +0800)
committerAlan Knowles <alan@akkbhome.com>
Wed, 1 Dec 2010 13:22:25 +0000 (21:22 +0800)
XObjectBase/GtkListStore.js

index a719a94..8706cd6 100644 (file)
@@ -12,17 +12,20 @@ GtkListStore = XObject.define(
     function(cfg) {
         XObject.call(this, cfg);
         // this is an example...
-        this.el.set_column_types ( 6, [
-            GObject.TYPE_STRING, 
-            GObject.TYPE_STRING, 
-            GObject.TYPE_STRING, 
-            GObject.TYPE_STRING, 
-            GObject.TYPE_STRING, 
-            GObject.TYPE_STRING 
-        ] );
+       
     }, 
     XObject,
     {
-        pack : 'set_model'
+        pack : 'set_model',
+        init : function() {
+            this.el.set_column_types ( 6, [
+                GObject.TYPE_STRING, 
+                GObject.TYPE_STRING, 
+                GObject.TYPE_STRING, 
+                GObject.TYPE_STRING, 
+                GObject.TYPE_STRING, 
+                GObject.TYPE_STRING 
+            ] );
+        }
     }
 );