Hi all
I've encountered a problem in the CommandManager class line 317:
if( numRepeats < 1 || numRepeats < command.m_numExecutions )
If a RepeatedCommand states that it should be run a finit number of
times the above test will run it only once! The correct condition
should be:
if( numRepeats < 1 || numRepeats > command.m_numExecutions )
Do you think I can apply this patch?
--
Giacomo Pati
Otego AG, Switzerland - http://www.otego.com
Orixo, the XML business alliance - http://www.orixo.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]