Update of /cvsroot/qooxdoo/qooxdoo/source/script/gui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12745/source/script/gui
Modified Files:
Tag: renderer
QxParent.js
Log Message:
Minor fix
Index: QxParent.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxParent.js,v
retrieving revision 1.1.2.22
retrieving revision 1.1.2.23
diff -u -d -r1.1.2.22 -r1.1.2.23
--- QxParent.js 28 Jan 2006 12:28:35 -0000 1.1.2.22
+++ QxParent.js 28 Jan 2006 15:24:35 -0000 1.1.2.23
@@ -1164,7 +1164,7 @@
if (this._children)
{
- var chl = ch.length;
+ var chl = this._children.length;
for (var i=chl-1; i>=0; i--)
{
@@ -1180,6 +1180,8 @@
{
this.removeEventListener(QxConst.EVENT_TYPE_KEYDOWN, this._onfocuskeyevent);
this.removeEventListener(QxConst.EVENT_TYPE_KEYPRESS, this._onfocuskeyevent);
+
+ this.forceFocusManager(null);
};
return QxWidget.prototype.dispose.call(this);
|