Update of /cvsroot/wxlua/wxLua/modules/wxlua/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19400/wxLua/modules/wxlua/include
Modified Files:
internal.h
Log Message:
Fixes for 64bit processors, use long not int
Fixes for wxWidgets 27 CVS HEAD, gdi.i, fontmapper doesn't have SetConfig anymore
switch to using wxluasetup.h instead of luasetup.h
Index: internal.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/internal.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** internal.h 30 Dec 2005 04:35:59 -0000 1.17
--- internal.h 23 Jan 2006 04:38:29 -0000 1.18
***************
*** 107,111 ****
void LUACALL wxLua_addToTrackedMemoryList(wxLuaState& wxlState, theObject *p##theObject) \
{ \
! wxlState.addToTrackedMemoryList((int)p##theObject, new theObject##wxLuaObject(p##theObject)); \
}
--- 107,111 ----
void LUACALL wxLua_addToTrackedMemoryList(wxLuaState& wxlState, theObject *p##theObject) \
{ \
! wxlState.addToTrackedMemoryList((long)p##theObject, new theObject##wxLuaObject(p##theObject)); \
}
|