From: John L. <jr...@us...> - 2010-08-12 23:40:41
|
Update of /cvsroot/wxlua/wxLua/apps/wxluacan/src In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv31525/apps/wxluacan/src Modified Files: cansim.cpp Log Message: Fix signature of wxLuaBinding_XXX_init() in cansim.cpp Update wxledit.cpp for cvs version of wxStEdit in wxCode Index: cansim.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/wxluacan/src/cansim.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** cansim.cpp 15 Jan 2008 01:04:04 -0000 1.16 --- cansim.cpp 12 Aug 2010 23:40:33 -0000 1.17 *************** *** 28,32 **** // Declare the binding initialization functions ! // Note : We could also do this "extern bool wxLuaBinding_XXX_init();" and // later call "wxLuaBinding_XXX_init();" to initialize it. // However we use the macros that include #if conditions to have a --- 28,32 ---- // Declare the binding initialization functions ! // Note : We could also do this "extern wxLuaBinding* wxLuaBinding_XXX_init();" and // later call "wxLuaBinding_XXX_init();" to initialize it. // However we use the macros that include #if conditions to have a *************** *** 36,40 **** #include "wxbind/include/wxbinddefs.h" WXLUA_DECLARE_BIND_STD ! extern bool wxLuaBinding_wxluacan_init(); // WDR: class implementations --- 36,40 ---- #include "wxbind/include/wxbinddefs.h" WXLUA_DECLARE_BIND_STD ! extern wxLuaBinding* wxLuaBinding_wxluacan_init(); // WDR: class implementations |