Update of /cvsroot/wxlua/wxLua/bindings/wxstc
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv32406/wxLua/bindings/wxstc
Modified Files:
wxstc_datatypes.lua
Log Message:
Fix last commit of trying to preserve the order of the binding conditions, this way works.
Index: wxstc_datatypes.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_datatypes.lua,v
retrieving revision 1.62
retrieving revision 1.63
diff -C2 -d -r1.62 -r1.63
*** wxstc_datatypes.lua 18 Jun 2007 19:51:25 -0000 1.62
--- wxstc_datatypes.lua 18 Jun 2007 21:40:28 -0000 1.63
***************
*** 307,311 ****
wxAutoBufferedPaintDC = {
BaseClass = "wxDC",
! Condition = "(wxCHECK_VERSION(2,8,0)) && (wxCHECK_VERSION(2,8,0))",
DefType = "class",
IsNumber = false,
--- 307,311 ----
wxAutoBufferedPaintDC = {
BaseClass = "wxDC",
! Condition = "(wxLUA_USE_wxDC) && (wxCHECK_VERSION(2,8,0))",
DefType = "class",
[...1140 lines suppressed...]
IsNumber = false,
--- 3835,3839 ----
wxWindowDC = {
BaseClass = "wxDC",
! Condition = "wxLUA_USE_wxDC",
DefType = "class",
IsNumber = false,
***************
*** 3904,3908 ****
wxXPMHandler = {
BaseClass = "wxImageHandler",
! Condition = "wxCHECK_VERSION(2,8,0) && wxUSE_TGA",
DefType = "class",
IsNumber = false,
--- 3904,3908 ----
wxXPMHandler = {
BaseClass = "wxImageHandler",
! Condition = "wxLUA_USE_wxImage && wxUSE_IMAGE",
DefType = "class",
IsNumber = false,
|