From: John L. <jr...@us...> - 2009-05-19 03:21:01
|
Update of /cvsroot/wxlua/wxLua/bindings/wxwidgets In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv15045/wxLua/bindings/wxwidgets Modified Files: wxbase_override.hpp wxcore_image.i Log Message: Do not export parts of the bindings that are only used internally. Declare them as extern within the cpp file of the binding. Index: wxbase_override.hpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/wxbase_override.hpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** wxbase_override.hpp 24 Mar 2009 04:15:07 -0000 1.18 --- wxbase_override.hpp 19 May 2009 03:20:53 -0000 1.19 *************** *** 412,415 **** --- 412,416 ---- // function be be called. wxObject *pObject = (wxObject *)wxlua_touserdata(L, 1, false); + //wxObject *pObject = (wxObject *)wxluaT_getuserdatatype(L, 1, wxluatype_wxObject); const wxLuaBindClass *wxlClass = wxluaT_getclass(L, className); Index: wxcore_image.i =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/wxcore_image.i,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** wxcore_image.i 22 Oct 2008 05:31:45 -0000 1.4 --- wxcore_image.i 19 May 2009 03:20:53 -0000 1.5 *************** *** 308,312 **** %endenum ! %define_string wxIMAGE_OPTION_BMP_FORMAT // wxString(_T("wxBMP_FORMAT")) %class %delete wxBMPHandler, wxImageHandler --- 308,312 ---- %endenum ! %define_string wxIMAGE_OPTION_BMP_FORMAT _T("wxBMP_FORMAT") // wxString(_T("wxBMP_FORMAT")) %class %delete wxBMPHandler, wxImageHandler |