From: Vadim Zeitlin Date: Tue, 9 Oct 2007 00:00:31 +0000 (+0000) Subject: no need to use ToAscii() explicitly in wxBase64Decode() call after r49095 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d20d5ee85827d5b7d45d4e4bc1f24dc10839ee8d no need to use ToAscii() explicitly in wxBase64Decode() call after r49095 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49097 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/fileconf.cpp b/src/common/fileconf.cpp index 1144fd8327..00ab5bf924 100644 --- a/src/common/fileconf.cpp +++ b/src/common/fileconf.cpp @@ -927,7 +927,7 @@ bool wxFileConfig::DoReadBinary(const wxString& key, wxMemoryBuffer* buf) const if ( !Read(key, &str) ) return false; - *buf = wxBase64Decode(str.ToAscii()); + *buf = wxBase64Decode(str); return true; }