Update of /cvsroot/wxlua/wxLua/samples
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv21141/samples
Modified Files:
bindings.wx.lua
Log Message:
fix typo
Index: bindings.wx.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/samples/bindings.wx.lua,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** bindings.wx.lua 22 Jan 2008 04:45:39 -0000 1.21
--- bindings.wx.lua 20 May 2008 04:21:22 -0000 1.22
***************
*** 977,981 ****
-- check for mistakes in the bindings
if (not c.classInfo) and wx.wxClassInfo.FindClass(c.name) then
! print(c.name.." is missing it's wxClassInfo, please report this.")
end
--- 977,981 ----
-- check for mistakes in the bindings
if (not c.classInfo) and wx.wxClassInfo.FindClass(c.name) then
! print(c.name.." is missing its wxClassInfo, please report this.")
end
***************
*** 985,989 ****
-- check for mistakes in the bindings
if (not bc.classInfo) and wx.wxClassInfo.FindClass(bc.name) then
! print(bc.name.." is missing it's wxClassInfo, please report this.")
end
--- 985,989 ----
-- check for mistakes in the bindings
if (not bc.classInfo) and wx.wxClassInfo.FindClass(bc.name) then
! print(bc.name.." is missing its wxClassInfo, please report this.")
end
|