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:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user