From: John L. <jr...@us...> - 2006-02-03 04:54:07
|
Update of /cvsroot/wxlua/wxLua/modules/wxlua/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24553/wxLua/modules/wxlua/include Modified Files: internal.h Log Message: -1 to wxID_ANY match #if #endif with comment of #if statement Move CreateStandAloneBitmaps from internal.cpp to wxlua.cpp, the app allow %rename for enums in genwxbind.lua, remove #defines in internal.h (a hack) Index: internal.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/internal.h,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** internal.h 23 Jan 2006 04:38:29 -0000 1.18 --- internal.h 3 Feb 2006 04:53:58 -0000 1.19 *************** *** 29,37 **** // with standard lua functions. - #define wxFileRead read // FIXME see file.i and wx_define.cpp need to remove these - #define wxFileWrite write - #define wxFileReadWrite read_write - #define wxFileWriteAppend write_append - //#define wxDataObjectGet wxDataObject::Get //#define wxDataObjectSet wxDataObject::Set --- 29,32 ---- *************** *** 235,239 **** // global function in Lua for wiring int LUACALL wxEvtHandler_ConnectEvent(lua_State *L); ! //int LUACALL wxEvtHandler_DisconnectEvent(lua_State *L); // get the method or 'get' property for the class at cpIndex --- 230,234 ---- // global function in Lua for wiring int LUACALL wxEvtHandler_ConnectEvent(lua_State *L); ! //int LUACALL wxEvtHandler_DisconnectEvent(lua_State *L); // FIXME implement this eventually // get the method or 'get' property for the class at cpIndex *************** *** 336,342 **** }; - // ---------------------------------------------------------------------------- - // Used to create a set of standard bitmaps for wxLua - int LUACALL CreateStandaloneBitmaps(lua_State *luaState); - #endif // WX_LUA_INTERNALS_H --- 331,333 ---- |