Update of /cvsroot/wxlua/wxLua/bindings/wxstc
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv6284/wxLua/bindings/wxstc
Modified Files:
wxstc_datatypes.lua
Log Message:
use wxList::compatibility_iterator not wxNode* for wxUSE_STL == 1 and 0
Index: wxstc_datatypes.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_datatypes.lua,v
retrieving revision 1.49
retrieving revision 1.50
diff -C2 -d -r1.49 -r1.50
*** wxstc_datatypes.lua 15 Mar 2007 00:01:11 -0000 1.49
--- wxstc_datatypes.lua 19 Mar 2007 03:47:17 -0000 1.50
***************
*** 394,404 ****
Name = "wxBusyCursor",
},
- wxBusyCursorSuspender = {
- Condition = "wxLUA_USE_wxBusyCursor",
- DefType = "class",
- Encapsulate = true,
- IsNumber = false,
- Name = "wxBusyCursorSuspender",
- },
wxBusyInfo = {
BaseClass = "wxObject",
--- 394,397 ----
***************
*** 1875,1879 ****
},
wxKeyType = {
! Condition = "wxLUA_USE_wxList",
DefType = "enum",
IsNumber = true,
--- 1868,1872 ----
},
wxKeyType = {
! Condition = "wxLUA_USE_wxList && !wxUSE_STL",
DefType = "enum",
IsNumber = true,
***************
*** 1932,1936 ****
wxList = {
BaseClass = "wxObject",
! Condition = "wxLUA_USE_wxList",
DefType = "class",
IsNumber = false,
--- 1925,1929 ----
wxList = {
BaseClass = "wxObject",
! Condition = "wxLUA_USE_wxList && !wxUSE_STL",
DefType = "class",
IsNumber = false,
***************
*** 2321,2325 ****
},
wxNode = {
! Condition = "wxLUA_USE_wxList",
DefType = "class",
IsNumber = false,
--- 2314,2318 ----
},
wxNode = {
! Condition = "wxLUA_USE_wxList && !wxUSE_STL",
DefType = "class",
IsNumber = false,
***************
*** 3568,3572 ****
wxWindowList = {
BaseClass = "wxList",
! Condition = "wxLUA_USE_wxWindowList",
DefType = "class",
IsNumber = false,
--- 3561,3565 ----
wxWindowList = {
BaseClass = "wxList",
! Condition = "wxLUA_USE_wxWindowList && !wxUSE_STL",
DefType = "class",
IsNumber = false,
***************
*** 3657,3667 ****
Name = "wxXmlResourceFlags",
},
- wxXmlResourceHandler = {
- BaseClass = "wxObject",
- Condition = "wxLUA_USE_wxXMLResource && wxUSE_XML",
- DefType = "class",
- IsNumber = false,
- Name = "wxXmlResourceHandler",
- },
}
--- 3650,3653 ----
|