]> git.saurik.com Git - wxWidgets.git/commitdiff
ExpandEnvVars was eating backslashes - no more.
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 14 Jul 1998 21:57:24 +0000 (21:57 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 14 Jul 1998 21:57:24 +0000 (21:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@267 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/config.cpp

index 9f70f2069fab61df6f8f13c32b4e3cba1a946df4..36c7bcdde1afef3f1afa1b4394e5cdd29ae2de76 100644 (file)
@@ -214,10 +214,6 @@ wxString ExpandEnvVars(const wxString& str)
         }
         break;
 
-      case '\\':
-        n++;
-        // fall through
-
       default:
         strResult += str[n];
     }