Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20736/source/script/widgets
Modified Files:
Tag: renderer
QxCommonViewButton.js QxMenuCheckBox.js
Log Message:
Minor fixes
Index: QxMenuCheckBox.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxMenuCheckBox.js,v
retrieving revision 1.7.2.16
retrieving revision 1.7.2.17
diff -C2 -d -r1.7.2.16 -r1.7.2.17
*** QxMenuCheckBox.js 16 Jan 2006 15:17:02 -0000 1.7.2.16
--- QxMenuCheckBox.js 16 Jan 2006 15:23:55 -0000 1.7.2.17
***************
*** 71,75 ****
proto._modifyChecked = function(propValue, propOldValue, propData)
{
! var vState = propValue ? QxConst.STATE_CHECKED : QxConst.STATE_NOTCHECKED;
this.setCheckedState(vState);
--- 71,75 ----
proto._modifyChecked = function(propValue, propOldValue, propData)
{
! var vState = propValue ? QxConst.STATE_CHECKED : QxConst.STATE_UNCHECKED;
this.setCheckedState(vState);
Index: QxCommonViewButton.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/Attic/QxCommonViewButton.js,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -C2 -d -r1.1.2.4 -r1.1.2.5
*** QxCommonViewButton.js 16 Jan 2006 15:17:02 -0000 1.1.2.4
--- QxCommonViewButton.js 16 Jan 2006 15:23:55 -0000 1.1.2.5
***************
*** 159,163 ****
};
! this.setCheckedState(propValue ? QxConst.STATE_CHECKED : QxConst.STATE_NOTCHECKED);
var vPage = this.getPage();
--- 159,163 ----
};
! this.setCheckedState(propValue ? QxConst.STATE_CHECKED : QxConst.STATE_UNCHECKED);
var vPage = this.getPage();
|