Browse Source

QueryGadget() should return Byte Ptr. Fixes #1.

woollybah 10 years ago
parent
commit
dd16c5788a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      maxgui.mod/maxgui.bmx

+ 1 - 1
maxgui.mod/maxgui.bmx

@@ -2479,7 +2479,7 @@ about: #QueryGadget retrieves system handles for use with API specific functions
 * QUERY_FLWIDGET_CLIENT | An FL_WIDGET handle representing a gadget's client area.
 ]
 EndRem
-Function QueryGadget( gadget:TGadget,queryid )
+Function QueryGadget:Byte Ptr( gadget:TGadget,queryid )
 	Return gadget.Query(queryid)
 End Function