git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2007-04-26 10:50:54 +00:00
parent 82008f15b7
commit 1c6c52fdef
6 changed files with 30 additions and 38 deletions

View File

@@ -382,7 +382,7 @@ wxString wxExpandEnvVars(const wxString& str)
while ( m < str.length() && (wxIsalnum(str[m]) || str[m] == wxT('_')) )
m++;
wxString strVarName(str.c_str() + n + 1, m - n - 1);
#ifdef __WXWINCE__