]> git.saurik.com Git - wxWidgets.git/commitdiff
no need to use ToAscii() explicitly in wxBase64Decode() call after r49095
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 9 Oct 2007 00:00:31 +0000 (00:00 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 9 Oct 2007 00:00:31 +0000 (00:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49097 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/fileconf.cpp

index 1144fd832773cc2c01327ec714064cc869eaa85d..00ab5bf924d9df1597853b792302d0a2e6f64d8a 100644 (file)
@@ -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;
 }