From: John L. <jr...@us...> - 2007-05-31 21:39:26
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv11100/wxLua/docs Modified Files: changelog.txt wxluaref.html Log Message: More cleanup, remove %rename tag for functions that can be overloaded Format %override text in .i files uniformly Remove wxConfig::Read/WriteInt/Float since lua uses double, just have Read/Write Index: wxluaref.html =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/wxluaref.html,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** wxluaref.html 31 May 2007 17:18:47 -0000 1.18 --- wxluaref.html 31 May 2007 21:38:40 -0000 1.19 *************** *** 809,813 **** // <a href="#wxLogNull">wxLogNull</a><br> <br> ! <font color=#AA0000><font size=+1><i>%class</i> <i>%delete</i> <i>%noclassinfo</i> <i>%encapsulate</i> <b><a name="wxLogNull">wxLogNull</a></b></font></font><blockquote> // NOTE: ALWAYS Delete() this when done since lua's gc may not delete it soon enough<br> <a href="#wxLogNull">wxLogNull</a>()<br> --- 809,813 ---- // <a href="#wxLogNull">wxLogNull</a><br> <br> ! <font color=#AA0000><font size=+1><i>%class</i> <i>%noclassinfo</i> <i>%encapsulate</i> <i>%delete</i> <b><a name="wxLogNull">wxLogNull</a></b></font></font><blockquote> // NOTE: ALWAYS Delete() this when done since lua's gc may not delete it soon enough<br> [...1817 lines suppressed...] // Set the styles for a segment of the document.<br> + <br> <font color=#CC3300> // <i>%override</i> [lua string styleBytes] SetStyleBytes(int length, lua string styleBytes)</font><br> + // void SetStyleBytes(int length, char* styleBytes);<br> void SetStyleBytes(int length, char* styleBytes);<br> <br> *************** *** 17479,17483 **** //#else<br> <font color=#CC3300> // <i>%override</i> [int startPos, int endPos] GetSelection()</font><br> ! void GetSelection(int* startPos, int* endPos);<br> //#endif<br> <br> --- 17751,17756 ---- //#else<br> <font color=#CC3300> // <i>%override</i> [int startPos, int endPos] GetSelection()</font><br> ! // void GetSelection(int* startPos, int* endPos);<br> ! void GetSelection();<br> //#endif<br> <br> Index: changelog.txt =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/changelog.txt,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** changelog.txt 31 May 2007 17:18:47 -0000 1.31 --- changelog.txt 31 May 2007 21:38:40 -0000 1.32 *************** *** 53,57 **** Removed %static and %static_only since these are automatically handled and static functions are put into the class table. ! Removed %property tag since these are generated on the fly and - Changed version strings and numbers to match how wxWidgets defines them. WXLUA_MAJOR_VERSION -> wxLUA_MAJOR_VERSION --- 53,59 ---- Removed %static and %static_only since these are automatically handled and static functions are put into the class table. ! Removed %property tag since these are generated on the fly. ! Depricated %constructor tag, use %rename NewConstructor ClassName(...) ! It is currently kept for very special cases, none of which exist now. - Changed version strings and numbers to match how wxWidgets defines them. WXLUA_MAJOR_VERSION -> wxLUA_MAJOR_VERSION *************** *** 62,66 **** WXCHECK_WXLUA_VERSION -> wxLUA_CHECK_VERSION Added wxLUA_CHECK_VERSION_FULL ! version 2.8.0.0 (released 24/12/2006) --- 64,69 ---- WXCHECK_WXLUA_VERSION -> wxLUA_CHECK_VERSION Added wxLUA_CHECK_VERSION_FULL ! - Renamed wxConfigBase::Destroy() to Delete() to match the %delete generated ! functions. version 2.8.0.0 (released 24/12/2006) |