From: John L. <jr...@us...> - 2007-08-07 19:09:58
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv24789/wxLua/docs Modified Files: FAQ.html Log Message: Fix typos Index: FAQ.html =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/FAQ.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FAQ.html 1 Jul 2007 02:23:53 -0000 1.4 --- FAQ.html 7 Aug 2007 19:09:55 -0000 1.5 *************** *** 1,5 **** <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html> ! <head> --- 1,4 ---- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html><head> *************** *** 11,18 **** ! <title>wxLua FAQ</title> ! <meta content="John Labenski" name="author"> ! </head> ! <body> --- 10,15 ---- ! ! <title>wxLua FAQ</title><meta content="John Labenski" name="author"></head> <body> *************** *** 259,263 **** ! <li>However, you can also use a wxString is you really want.</li> --- 256,260 ---- ! <li>However, you can also use a wxString if you really want.</li> *************** *** 362,368 **** <li>Bottom line - don't worry about delete()ing anything ! except graphics objects (for MSW really) or classes that specifically state (in wxluaref.html) that you should delete() them because the ! garbage collector may not do so soon enough.</li> --- 359,365 ---- <li>Bottom line - don't worry about delete()ing anything ! except:</li><ul><li>Graphics objects (for MSW really).</li><li>Classes that specifically state (in wxluaref.html) that you should delete() them because the ! garbage collector may not do so soon enough.</li><li>Objects that may be very large, like a wxImage(1000, 1000).</li></ul> *************** *** 431,438 **** ! <li>Unfortunately there is no way to tell whether the user has used the '.' or ':' calling convention and so the error message cannot be tailored for both static and nonstatic member ! functions. Just remember that the first parameter for nonstatic class member functions is the 'self'.</li> --- 428,437 ---- ! <li>Unfortunately ! there is no way to tell whether the user has used the '.' or ':' calling convention and so the error message cannot be tailored for both static and nonstatic member ! functions. Just remember that the first parameter for nonstatic class ! member functions called using the ':' notation is the 'self'.</li> *************** *** 472,475 **** ! </body> ! </html> --- 471,473 ---- ! </body></html> \ No newline at end of file |