RE: Win32Lib: Possible Bug in setWinMsgHandler
>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
>
>?
|
Not Categorized, Please Help
|
|