|
From: Itamar M. L. J. L. <ita...@gm...> - 2015-01-03 23:07:07
|
>From user Jose Claudio
has a bug in htimer.prg on lines:
Line 37
::id := iif( nId == Nil, TIMER_FIRST_ID + Len( ::oParent:aControls ),
;
nId )
the right is:
::id := iif( nId == Nil, TIMER_FIRST_ID + Len( ::aTimers ), ;
nId )
Line 41
hwg_Settimer( oParent:handle, ::id, ::value )
the right is:
hwg_Settimer( ::oParent:handle, ::id, ::value )
Best regards,
Itamar M. Lins Jr.
|