From: John L. <jr...@us...> - 2007-06-01 18:19:51
|
Update of /cvsroot/wxlua/wxLua/bindings/wxstc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv2839/wxLua/bindings/wxstc Modified Files: stc.i Log Message: Fix Makefiles to work for genwxbind.lua w/ cygwin in MSW Make all the %override comments in the bindings uniform and fix the parameters actually used for them. Index: stc.i =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/stc.i,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** stc.i 31 May 2007 21:38:38 -0000 1.10 --- stc.i 1 Jun 2007 18:19:46 -0000 1.11 *************** *** 1,5 **** ///////////////////////////////////////////////////////////////////////////// // Purpose: wxStyledTextCtrl from contribs ! // Author: J Winwood // Created: 14/11/2001 // Copyright: (c) 2001-2002 Lomtick Software. All rights reserved. --- 1,5 ---- ///////////////////////////////////////////////////////////////////////////// // Purpose: wxStyledTextCtrl from contribs ! // Author: J Winwood, John Labenski // Created: 14/11/2001 // Copyright: (c) 2001-2002 Lomtick Software. All rights reserved. *************** *** 1800,1804 **** //#else // %override [int linePos] GetCurLine() ! // wxString GetCurLine(int* linePos=NULL); wxString GetCurLine(); //#endif --- 1800,1804 ---- //#else // %override [int linePos] GetCurLine() ! // C++ Func: wxString GetCurLine(int* linePos=NULL); wxString GetCurLine(); //#endif *************** *** 1955,1959 **** // %override [lua string styleBytes] SetStyleBytes(int length, lua string styleBytes) ! // void SetStyleBytes(int length, char* styleBytes); void SetStyleBytes(int length, char* styleBytes); --- 1955,1959 ---- // %override [lua string styleBytes] SetStyleBytes(int length, lua string styleBytes) ! // C++ Func: void SetStyleBytes(int length, char* styleBytes); void SetStyleBytes(int length, char* styleBytes); *************** *** 3100,3104 **** //#else // %override [int startPos, int endPos] GetSelection() ! // void GetSelection(int* startPos, int* endPos); void GetSelection(); //#endif --- 3100,3104 ---- //#else // %override [int startPos, int endPos] GetSelection() ! // C++ Func: void GetSelection(int* startPos, int* endPos); void GetSelection(); //#endif |