Update of /cvsroot/wxlua/wxLua/samples
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv32406/wxLua/samples
Modified Files:
bindings.wx.lua
Log Message:
Fix last commit of trying to preserve the order of the binding conditions, this way works.
Index: bindings.wx.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/samples/bindings.wx.lua,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** bindings.wx.lua 16 Jun 2007 06:21:47 -0000 1.10
--- bindings.wx.lua 18 Jun 2007 21:40:53 -0000 1.11
***************
*** 964,967 ****
--- 964,968 ----
local classinfoNotes = {
["wxAutoBufferedPaintDC"] = "(Platform dep. baseclass, wxDC is ok)",
+ ["wxCursor"] = "(Platform dep. baseclass, wxObject is ok)",
["wxHelpController"] = "(Platform dep. typedef by wxWidgets)",
["wxLuaDebuggerServer"] = "(Platform dep. typedef by wxLua)",
***************
*** 1157,1161 ****
local t = {
{"..", ["icon"] = list_images.folder},
! ["col_labels"] = {"Class Name", "Function Name", "Args"},
["object_type"] = "Overloaded Baseclass Functions"
}
--- 1158,1162 ----
local t = {
{"..", ["icon"] = list_images.folder},
! ["col_labels"] = {"Function Name", "Class Name", "Args"},
["object_type"] = "Overloaded Baseclass Functions"
}
|