Update of /cvsroot/wxlua/wxLua/modules/wxlua/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv28504/wxLua/modules/wxlua/src
Modified Files:
wxlbind.cpp
Log Message:
separate out the wxluatag arrays and use pointer in WXLUAMETHOD
Index: wxlbind.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/src/wxlbind.cpp,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -d -r1.47 -r1.48
*** wxlbind.cpp 14 Dec 2006 01:01:26 -0000 1.47
--- wxlbind.cpp 17 Dec 2006 07:47:17 -0000 1.48
***************
*** 28,32 ****
// and 0 is used as an end marker for tag array that
// represents prototypes argument types
! //
int s_wxluaarg_None = 0;
int s_wxluaarg_String = -2;
--- 28,34 ----
// and 0 is used as an end marker for tag array that
// represents prototypes argument types
!
! wxLuaArgTag s_wxluaargArray_None[1] = {0};
!
int s_wxluaarg_None = 0;
int s_wxluaarg_String = -2;
|