From: Alan Knowles Date: Thu, 2 Dec 2010 11:55:42 +0000 (+0800) Subject: XObjectBase/GtkTreeModelFilter.js X-Git-Url: http://git.roojs.org/?a=commitdiff_plain;ds=sidebyside;h=e62bf1dce073003c24397e7be70c843f9d6c51b6;p=app.Builder.js XObjectBase/GtkTreeModelFilter.js --- diff --git a/XObjectBase/GtkTreeModelFilter.js b/XObjectBase/GtkTreeModelFilter.js index d703e6e24..07bf6c4a1 100644 --- a/XObjectBase/GtkTreeModelFilter.js +++ b/XObjectBase/GtkTreeModelFilter.js @@ -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); }