From: John L. <jr...@us...> - 2007-06-06 15:20:19
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv3229/wxLua/docs Modified Files: wxlua.html Log Message: Allow multiple overload functions, but pick the first one which should be the best. Remove duplicate wxWindow::SetSize Static functions are always called using '.' and never ':' Index: wxlua.html =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/wxlua.html,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** wxlua.html 31 May 2007 17:18:47 -0000 1.19 --- wxlua.html 6 Jun 2007 15:20:15 -0000 1.20 *************** *** 1,14 **** <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html> ! <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> ! <title>wxLua Documentation</title> ! - <meta content="John Labenski" name="author"> - - </head> <body> --- 1,10 ---- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html><head> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> ! + <title>wxLua Documentation</title><meta content="John Labenski" name="author"></head> <body> *************** *** 1126,1130 **** <li>Example : <i>f = wx.wxFileName('dummy'); ! f:GetCwd() == wx.wxFileName.GetCwd()</i></li> </ul> --- 1122,1126 ---- <li>Example : <i>f = wx.wxFileName('dummy'); ! f.GetCwd() == wx.wxFileName.GetCwd()</i></li> </ul> *************** *** 2418,2421 **** </ul> ! </body> ! </html> --- 2414,2416 ---- </ul> ! </body></html> \ No newline at end of file |