From: John L. <jr...@us...> - 2007-06-25 16:08:10
|
Update of /cvsroot/wxlua/wxLua/modules/wxlua/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9840/wxLua/modules/wxlua/src Modified Files: wxlstate.cpp Log Message: Allow the wxTaskBarIcon to be delete()ed since you have to in MSW for the program to exit Change the keys in the lua registry table to be lightuserdata to avoid collisions Display what the keys are in the registry table in the stack dialog Index: wxlstate.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/src/wxlstate.cpp,v retrieving revision 1.115 retrieving revision 1.116 diff -C2 -d -r1.115 -r1.116 *** wxlstate.cpp 25 Jun 2007 03:19:50 -0000 1.115 --- wxlstate.cpp 25 Jun 2007 16:07:58 -0000 1.116 *************** *** 40,43 **** --- 40,50 ---- #include "wx/tokenzr.h" + int wxlua_lreg_references_key = WXLUA_LREG_REFERENCES; + int wxlua_lreg_classes_key = WXLUA_LREG_CLASSES; + int wxlua_lreg_derivedmethods_key = WXLUA_LREG_DERIVED_METHODS; + int wxlua_lreg_wxluastaterefdata_key = WXLUA_LREG_WXLUASTATEREFDATA; + int wxlua_lreg_metatable_tag_key = WXLUA_METATABLE_TAG; + int wxlua_lreg_metatable_class_key = WXLUA_METATABLE_CLASS; + wxLuaState wxNullLuaState(false); |