fix for Unicode build

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12578 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-11-22 00:58:09 +00:00
parent ad9f477da5
commit a7ad2611f3

View File

@@ -549,7 +549,7 @@ wxFileConfig::wxFileConfig(wxInputStream &inStream)
char buf[1024];
while ( !inStream.Read(buf, WXSIZEOF(buf)).Eof() )
strTmp += wxString(buf, inStream.LastRead());
strTmp.append(wxConvertMB2WX(buf), inStream.LastRead());
strTmp += wxString(buf, inStream.LastRead());