From 0ce2baa5e68218edf40b5c0492b97bc69794f210 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 14 Jul 1998 21:57:24 +0000 Subject: [PATCH] ExpandEnvVars was eating backslashes - no more. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@267 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/config.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 9f70f2069f..36c7bcdde1 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -214,10 +214,6 @@ wxString ExpandEnvVars(const wxString& str) } break; - case '\\': - n++; - // fall through - default: strResult += str[n]; } -- 2.47.2