From: John L. <jr...@us...> - 2007-03-23 04:27:26
|
Update of /cvsroot/wxlua/wxLua/modules/wxbind/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv24349/wxLua/modules/wxbind/src Modified Files: gdi.cpp wxlprint.cpp Log Message: Renamed all 'C' functions from wxLua_lua_XXX to just wxlua_XXX to shorten them and match lua's lua_XXX function convention. Index: wxlprint.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxbind/src/wxlprint.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** wxlprint.cpp 7 Feb 2007 04:56:24 -0000 1.14 --- wxlprint.cpp 23 Mar 2007 04:27:23 -0000 1.15 *************** *** 116,120 **** // // wxLuaPrintout::OnBeginDocument 1 call base 0 ! // wxLua_lua_getTableFunc func 'base_OnBeginDocument' pClass -1220355700 'wxLuaPrintout', userdata 1, lightuserdata 0, ttag 207, class_tag 207 lua_State 139252808 wxLuaStateRefData 139155808 call base 1 // wxLua_wxPrintout_OnBeginDocument 1 (this is the wxLua binding function for wxPrintout::OnBeginDocument) // wxLuaPrintout::OnBeginDocument 1 call base 1 --- 116,120 ---- // // wxLuaPrintout::OnBeginDocument 1 call base 0 ! // wxlua_getTableFunc func 'base_OnBeginDocument' pClass -1220355700 'wxLuaPrintout', userdata 1, lightuserdata 0, ttag 207, class_tag 207 lua_State 139252808 wxLuaStateRefData 139155808 call base 1 // wxLua_wxPrintout_OnBeginDocument 1 (this is the wxLua binding function for wxPrintout::OnBeginDocument) // wxLuaPrintout::OnBeginDocument 1 call base 1 Index: gdi.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxbind/src/gdi.cpp,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** gdi.cpp 19 Mar 2007 03:47:18 -0000 1.56 --- gdi.cpp 23 Mar 2007 04:27:22 -0000 1.57 *************** *** 7420,7424 **** int count = 0; ! const char **sizeArray = wxLua_lua_getchararray(L, 1, count); if (sizeArray != NULL) { --- 7420,7424 ---- int count = 0; ! const char **sizeArray = wxlua_getchararray(L, 1, count); if (sizeArray != NULL) { |