RE: Win32Lib: Possible Bug in setWinMsgHandler
- Posted by "Elliott S. de Andrade" <quantum_analyst at hotmail.com> Apr 22, 2004
- 457 views
>From: cklester <guest at RapidEuphoria.com> >Subject: Win32Lib: Possible Bug in setWinMsgHandler > >posted by: cklester <cklester at yahoo.com> > >global procedure setWinMsgHandler(object pId, object pMsg, integer >pRoutine) > integer lPosn > integer id > atom lMsg > > if not sequence(id) then > id = {id} > end if > >--- > It should be: if not sequence(pId) then pId = {pId} end if but, this has been found before, and is already in the next version. >Should that first conditional be > > if not sequence(pId) then > >?