From: John L. <jr...@us...> - 2007-03-15 14:20:20
|
Update of /cvsroot/wxlua/wxLua/bindings/wxwidgets In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv4462/bindings/wxwidgets Modified Files: file.i image.i Log Message: remove duplicate entries in .i files start to sort the binding items in the structs alphabetically Index: file.i =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/file.i,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** file.i 13 Mar 2007 23:01:53 -0000 1.19 --- file.i 15 Mar 2007 14:20:15 -0000 1.20 *************** *** 63,76 **** %define %string wxFILE_SEP_PATH_VMS wxT(".") // VMS also uses '[' and ']' ! %if defined(__UNIX__) && !defined(__OS2__) ! // CYGWIN also uses UNIX settings ! %define %string wxFILE_SEP_PATH wxT("/") // wxFILE_SEP_PATH_UNIX ! %endif ! %if defined(__MAC__) ! %define %string wxFILE_SEP_PATH wxT(":") // wxFILE_SEP_PATH_MAC ! %endif ! %if !(defined(__UNIX__) && !defined(__OS2__)) && !defined(__MAC__) // Windows and OS/2 ! %define %string wxFILE_SEP_PATH wxT("\\") // wxFILE_SEP_PATH_DOS ! %endif // Unix/Windows %define %string wxPATH_SEP_DOS // wxT(";") --- 63,67 ---- %define %string wxFILE_SEP_PATH_VMS wxT(".") // VMS also uses '[' and ']' ! %define %string wxFILE_SEP_PATH wxLua_FILE_SEP_PATH // hack to convert from wxChar wxT('') to wxChar* wxT("") %define %string wxPATH_SEP_DOS // wxT(";") *************** *** 82,86 **** //%function bool wxIsPathSeparator(wxChar c) FIXME ! //%function bool wxEndsWithPathSeparator(const wxChar *pszFileName) --- 73,77 ---- //%function bool wxIsPathSeparator(wxChar c) FIXME ! %function bool wxEndsWithPathSeparator(const wxString& pszFileName) Index: image.i =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/image.i,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** image.i 14 Mar 2007 05:08:09 -0000 1.22 --- image.i 15 Mar 2007 14:20:15 -0000 1.23 *************** *** 60,65 **** %wxchkver_2_6 %define %string wxIMAGE_OPTION_CUR_HOTSPOT_Y ! %define %string wxIMAGE_OPTION_PNG_FORMAT ! %define %string wxIMAGE_OPTION_PNG_BITDEPTH %define %string wxIMAGE_OPTION_QUALITY _T("quality") --- 60,65 ---- %wxchkver_2_6 %define %string wxIMAGE_OPTION_CUR_HOTSPOT_Y ! //%define %string wxIMAGE_OPTION_PNG_FORMAT see wxPNGHandler ! //%define %string wxIMAGE_OPTION_PNG_BITDEPTH see wxPNGHandler %define %string wxIMAGE_OPTION_QUALITY _T("quality") |