file wxlua_bind.cpp line 1043

static int LUACALL wxLua_function_ungcobject(lua_State *L)
{
    bool ret = false;
    if (wxluaO_isgcobject(L, 1))
    {
        ret = wxluaO_undeletegcobject(L, 1);
    }

    lua_pushboolean(L, ret);
    return 1;
}


the second argument for 

wxluaO_isgcobject and
wxluaO_undeletegcobject

should be cast to a (void *)

Andre


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
wxlua-users mailing list
wxlua-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxlua-users

Reply via email to