Update of /cvsroot/qooxdoo/qooxdoo/source/script/core
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5550/source/script/core
Modified Files:
Tag: renderer
QxExtend.js
Log Message:
Minor improvement
Index: QxExtend.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/QxExtend.js,v
retrieving revision 1.7.2.96
retrieving revision 1.7.2.97
diff -C2 -d -r1.7.2.96 -r1.7.2.97
*** QxExtend.js 16 Jan 2006 11:54:11 -0000 1.7.2.96
--- QxExtend.js 16 Jan 2006 11:55:06 -0000 1.7.2.97
***************
*** 395,402 ****
// building forceFoo(): Set (override) without do anything else
! pp[QxConst.INTERNAL_FORCE + p.method] = function(newValue)
! {
! this[valueKey] = newValue;
! return true;
};
--- 395,400 ----
// building forceFoo(): Set (override) without do anything else
! pp[QxConst.INTERNAL_FORCE + p.method] = function(newValue) {
! return this[valueKey] = newValue;
};
|