Update of /cvsroot/wxlua/wxLua/bindings
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv17631/wxLua/bindings
Modified Files:
genwxbind.lua
Log Message:
use defined(WXCOMAP_XXX) && WX_COMPAT_XXX not just #if WX_COMPAT
better colours for wxluasudoku
Index: genwxbind.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/genwxbind.lua,v
retrieving revision 1.80
retrieving revision 1.81
diff -C2 -d -r1.80 -r1.81
*** genwxbind.lua 6 Nov 2006 06:11:42 -0000 1.80
--- genwxbind.lua 22 Nov 2006 06:08:32 -0000 1.81
***************
*** 663,677 ****
conditions["%wxchkver28"] = "wxCHECK_VERSION(2,8,0)"
-- wxWidgets version compatibility checks
! conditions["%wxcompat20"] = "WXWIN_COMPATIBILITY_2"
! conditions["%wxcompat22"] = "WXWIN_COMPATIBILITY_2_2"
! conditions["%wxcompat24"] = "WXWIN_COMPATIBILITY_2_4"
! conditions["%wxcompat26"] = "WXWIN_COMPATIBILITY_2_6"
! conditions["%wxcompat28"] = "WXWIN_COMPATIBILITY_2_8"
! conditions["WXWIN_COMPATIBILITY_2"] = "WXWIN_COMPATIBILITY_2"
! conditions["WXWIN_COMPATIBILITY_2_2"] = "WXWIN_COMPATIBILITY_2_2"
! conditions["WXWIN_COMPATIBILITY_2_4"] = "WXWIN_COMPATIBILITY_2_4"
! conditions["WXWIN_COMPATIBILITY_2_6"] = "WXWIN_COMPATIBILITY_2_6"
! conditions["WXWIN_COMPATIBILITY_2_8"] = "WXWIN_COMPATIBILITY_2_8"
-- wxWidgets platform checks
--- 663,677 ----
conditions["%wxchkver28"] = "wxCHECK_VERSION(2,8,0)"
-- wxWidgets version compatibility checks
! conditions["%wxcompat20"] = "(defined(WXWIN_COMPATIBILITY_2) && WXWIN_COMPATIBILITY_2)"
! conditions["%wxcompat22"] = "(defined(WXWIN_COMPATIBILITY_2_2) && WXWIN_COMPATIBILITY_2_2)"
! conditions["%wxcompat24"] = "(defined(WXWIN_COMPATIBILITY_2_4) && WXWIN_COMPATIBILITY_2_4)"
! conditions["%wxcompat26"] = "(defined(WXWIN_COMPATIBILITY_2_6) && WXWIN_COMPATIBILITY_2_6)"
! conditions["%wxcompat28"] = "(defined(WXWIN_COMPATIBILITY_2_8) && WXWIN_COMPATIBILITY_2_8)"
! conditions["WXWIN_COMPATIBILITY_2"] = "(defined(WXWIN_COMPATIBILITY_2) && WXWIN_COMPATIBILITY_2)"
! conditions["WXWIN_COMPATIBILITY_2_2"] = "(defined(WXWIN_COMPATIBILITY_2_2) && WXWIN_COMPATIBILITY_2_2)"
! conditions["WXWIN_COMPATIBILITY_2_4"] = "(defined(WXWIN_COMPATIBILITY_2_4) && WXWIN_COMPATIBILITY_2_4)"
! conditions["WXWIN_COMPATIBILITY_2_6"] = "(defined(WXWIN_COMPATIBILITY_2_6) && WXWIN_COMPATIBILITY_2_6)"
! conditions["WXWIN_COMPATIBILITY_2_8"] = "(defined(WXWIN_COMPATIBILITY_2_8) && WXWIN_COMPATIBILITY_2_8)"
-- wxWidgets platform checks
|