XObjectBase/GtkTreeModelFilter.js
[app.Builder.js] / XObjectBase / GtkTreeModelFilter.js
index 0d7f801..e8a8309 100644 (file)
@@ -22,7 +22,7 @@ GtkTreeModelFilter = XObject.define(
         init : function() 
         {
             // 
-            //this.items[0].pack = false;
+            this.items[0].pack = false;
             this.items[0].init();
             this.list = this.items[0];
             this.el = new Gtk.TreeModelFilter.c_new(this.items[0].el, null);
@@ -34,12 +34,12 @@ GtkTreeModelFilter = XObject.define(
         },
         getValue  : function ( path, col)
         {
-            return this.list.getValue(path, col);
+            return this.list.getValue.call(this, path, col);
             
         },
         setValue  : function ( path, col, val)
         {
-            this.list.setValue(path,col,val);
+            this.list.setValue.call(this, path,col,val);
         }