From f6eaf52a45d84ccc2fca1aef0edfc4f19cf9843b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 17 Mar 2007 14:39:17 +0000 Subject: [PATCH 1/1] output '}' as wxChar, not char, which results in using the int overload of operator<<() in Unicode build (patch 1682643) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44867 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 15d559eb65..660932e469 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -425,7 +425,7 @@ wxString wxExpandEnvVars(const wxString& str) else { // skip closing bracket unless the variables wasn't expanded if ( pszValue == NULL ) - strResult << (char)bracket; + strResult << (wxChar)bracket; m++; } } -- 2.45.2