From: Alan Knowles Date: Thu, 2 Dec 2010 11:56:47 +0000 (+0800) Subject: XObjectBase/GtkTreeModelFilter.js X-Git-Url: http://git.roojs.org/?p=app.Builder.js;a=commitdiff_plain;h=308f093f5b2ed0333f939ccddcd07e0b8594c168 XObjectBase/GtkTreeModelFilter.js --- diff --git a/XObjectBase/GtkTreeModelFilter.js b/XObjectBase/GtkTreeModelFilter.js index e8a83098f..2b55c9b2c 100644 --- a/XObjectBase/GtkTreeModelFilter.js +++ b/XObjectBase/GtkTreeModelFilter.js @@ -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); }