From: John L. <jr...@us...> - 2007-05-31 21:39:26
|
Update of /cvsroot/wxlua/wxLua/bindings/wxstc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv11100/wxLua/bindings/wxstc Modified Files: stc.i 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: stc.i =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/stc.i,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** stc.i 31 May 2007 17:18:46 -0000 1.9 --- stc.i 31 May 2007 21:38:38 -0000 1.10 *************** *** 1800,1804 **** //#else // %override [int linePos] GetCurLine() ! wxString GetCurLine(int* linePos=NULL); //#endif --- 1800,1805 ---- //#else // %override [int linePos] GetCurLine() ! // wxString GetCurLine(int* linePos=NULL); ! wxString GetCurLine(); //#endif *************** *** 1952,1956 **** --- 1953,1959 ---- // Set the styles for a segment of the document. + // %override [lua string styleBytes] SetStyleBytes(int length, lua string styleBytes) + // void SetStyleBytes(int length, char* styleBytes); void SetStyleBytes(int length, char* styleBytes); *************** *** 3097,3101 **** //#else // %override [int startPos, int endPos] GetSelection() ! void GetSelection(int* startPos, int* endPos); //#endif --- 3100,3105 ---- //#else // %override [int startPos, int endPos] GetSelection() ! // void GetSelection(int* startPos, int* endPos); ! void GetSelection(); //#endif |