Update of /cvsroot/wxlua/wxLua/modules/wxbind/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv16835/wxLua/modules/wxbind/src
Modified Files:
windows.cpp wx_bind.cpp
Log Message:
Fix %enum ns1::ns2::EnumName to work
Index: windows.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxbind/src/windows.cpp,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** windows.cpp 9 Jun 2006 22:51:33 -0000 1.24
--- windows.cpp 12 Jun 2006 02:48:09 -0000 1.25
***************
*** 578,582 ****
}
! // %overload %rename FindWindow wxWindow* FindWindow(long id)
static int LUACALL wxLua_wxWindow_FindWindow1(lua_State *L)
{
--- 578,582 ----
}
! // %overload wxWindow* FindWindow(long id)
static int LUACALL wxLua_wxWindow_FindWindow1(lua_State *L)
{
***************
*** 2612,2616 ****
}
! // %overload %rename GetPosition wxPoint GetPosition() const // FIXME
static int LUACALL wxLua_wxWindow_GetPosition1(lua_State *L)
{
--- 2612,2616 ----
}
! // %overload wxPoint GetPosition() const
static int LUACALL wxLua_wxWindow_GetPosition1(lua_State *L)
{
***************
*** 2788,2792 ****
}
! // %overload %rename SetClientSize virtual void SetClientSize(const wxSize& size)
static int LUACALL wxLua_wxWindow_SetClientSize1(lua_State *L)
{
--- 2788,2792 ----
}
! // %overload virtual void SetClientSize(const wxSize& size)
static int LUACALL wxLua_wxWindow_SetClientSize1(lua_State *L)
{
Index: wx_bind.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxbind/src/wx_bind.cpp,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** wx_bind.cpp 9 Jun 2006 22:51:33 -0000 1.48
--- wx_bind.cpp 12 Jun 2006 02:48:09 -0000 1.49
***************
*** 5030,5033 ****
--- 5030,5037 ----
+ // ----------------------------------------------------------------------------
+ // wxLuaGetClassList_wx() is called to register classes
+ // ----------------------------------------------------------------------------
+
WXLUACLASS* wxLuaGetClassList_wx(size_t &count)
{
|