Update of /cvsroot/wxlua/wxLua/modules/wxbind/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24553/wxLua/modules/wxbind/src
Modified Files:
Makefile wx_define.cpp
Log Message:
-1 to wxID_ANY
match #if #endif with comment of #if statement
Move CreateStandAloneBitmaps from internal.cpp to wxlua.cpp, the app
allow %rename for enums in genwxbind.lua, remove #defines in internal.h (a hack)
Index: wx_define.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxbind/src/wx_define.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** wx_define.cpp 2 Feb 2006 16:07:47 -0000 1.1
--- wx_define.cpp 3 Feb 2006 04:53:57 -0000 1.2
***************
*** 1280,1291 ****
#if wxLUA_USE_wxFile
! { "wxFileWrite", false, wxFile::wxFileWrite, 0 },
{ "wxFromStart", false, wxFromStart, 0 },
{ "wxFromEnd", false, wxFromEnd, 0 },
{ "wxFromCurrent", false, wxFromCurrent, 0 },
- { "wxFileWriteAppend", false, wxFile::wxFileWriteAppend, 0 },
{ "wxInvalidOffset", false, wxInvalidOffset, 0 },
! { "wxFileReadWrite", false, wxFile::wxFileReadWrite, 0 },
! { "wxFileRead", false, wxFile::wxFileRead, 0 },
#endif
--- 1280,1291 ----
#if wxLUA_USE_wxFile
! { "wxFileWrite", false, wxFile::write, 0 },
{ "wxFromStart", false, wxFromStart, 0 },
{ "wxFromEnd", false, wxFromEnd, 0 },
+ { "wxFileRead", false, wxFile::read, 0 },
+ { "wxFileReadWrite", false, wxFile::read_write, 0 },
{ "wxFromCurrent", false, wxFromCurrent, 0 },
{ "wxInvalidOffset", false, wxInvalidOffset, 0 },
! { "wxFileWriteAppend", false, wxFile::write_append, 0 },
#endif
Index: Makefile
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxbind/src/Makefile,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Makefile 2 Feb 2006 15:49:24 -0000 1.6
--- Makefile 3 Feb 2006 04:53:57 -0000 1.7
***************
*** 38,42 ****
CXX = $(WXCXX)
! APPEXTRADEFS = -I../../ -I$(WXPREFIX)/contrib/include -fexceptions -DLUACALL=
WXBIND_TARGET_LIBNAME = lib$(WXBASENAME)_wxluabind-$(WXRELEASE)
--- 38,42 ----
CXX = $(WXCXX)
! APPEXTRADEFS = -I../../ -I../setup -I$(WXPREFIX)/contrib/include -fexceptions -DLUACALL=
WXBIND_TARGET_LIBNAME = lib$(WXBASENAME)_wxluabind-$(WXRELEASE)
|