ExpandEnvVars was eating backslashes - no more.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@267 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1998-07-14 21:57:24 +00:00
parent 3826db3ef5
commit 0ce2baa5e6

View File

@ -214,10 +214,6 @@ wxString ExpandEnvVars(const wxString& str)
}
break;
case '\\':
n++;
// fall through
default:
strResult += str[n];
}