compilation fix for DoReadBinary() in STL build

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47434 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-07-13 14:49:58 +00:00
parent c70557da08
commit 50257dba06

View File

@@ -926,7 +926,7 @@ bool wxFileConfig::DoReadBinary(const wxString& key, wxMemoryBuffer* buf) const
if ( !Read(key, &str) )
return false;
*buf = wxBase64Decode(str);
*buf = wxBase64Decode(str.ToAscii());
return true;
}