Remaining Makefile.ins,

Changed cp flags for "apply",
  Added linestyle test
  char -> wxChar in wxStringTokenizer


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2830 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-06-19 08:29:21 +00:00
parent d9a451ce33
commit c17bcb8448
2 changed files with 40 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ off_t wxStringTokenizer::FindDelims(const wxString& str, const wxString& delims)
{
for ( size_t i = 0; i < str.Length(); i++ )
{
char c = str[i];
wxChar c = str[i];
for ( size_t j = 0; j < delims.Length() ; j++ )
{