XObjectBase/GtkListStore.js
[app.Builder.js] / XObjectBase / GtkTreeModelFilter.js
index 07bf6c4..2b55c9b 100644 (file)
@@ -34,12 +34,13 @@ GtkTreeModelFilter = XObject.define(
         },
         getValue  : function ( path, col)
         {
-            return this.list.getValue.call(this, path, col);
+            
+            return this.list.getValue(path, col);
             
         },
         setValue  : function ( path, col, val)
         {
-            this.list.setValue.call(this,(path,col,val);
+            this.list.setValue(path,col,val);
         }