[Qooxdoo-commit] qooxdoo/source/script/gui QxCommand.js,1.1.2.6,1.1.2.7
Brought to you by:
ecker,
martinwittemann
|
From: Sebastian W. <wp...@us...> - 2006-01-28 18:19:37
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6586/source/script/gui Modified Files: Tag: renderer QxCommand.js Log Message: Fixed many memory leaks, optimized some disposers, added missing dispose call for some events Index: QxCommand.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxCommand.js,v retrieving revision 1.1.2.6 retrieving revision 1.1.2.7 diff -u -d -r1.1.2.6 -r1.1.2.7 --- QxCommand.js 16 Jan 2006 16:11:55 -0000 1.1.2.6 +++ QxCommand.js 28 Jan 2006 18:19:24 -0000 1.1.2.7 @@ -59,7 +59,7 @@ proto.execute = function(vTarget) { if (this.hasEventListeners(QxConst.EVENT_TYPE_EXECUTE)) { - this.dispatchEvent(new QxDataEvent(QxConst.EVENT_TYPE_EXECUTE, vTarget)); + this.dispatchEvent(new QxDataEvent(QxConst.EVENT_TYPE_EXECUTE, vTarget), true); }; return false; |