XObjectBase/GtkTreeModelFilter.js
authorAlan Knowles <alan@akbkhome.com>
Thu, 2 Dec 2010 11:56:47 +0000 (19:56 +0800)
committerAlan Knowles <alan@akbkhome.com>
Thu, 2 Dec 2010 11:56:47 +0000 (19:56 +0800)
XObjectBase/GtkTreeModelFilter.js

index e8a8309..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);
         }