projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dad49cc
)
no need to use ToAscii() explicitly in wxBase64Decode() call after r49095
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Tue, 9 Oct 2007 00:00:31 +0000
(
00:00
+0000)
committer
Vadim 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
patch
|
blob
|
blame
|
history
diff --git
a/src/common/fileconf.cpp
b/src/common/fileconf.cpp
index 1144fd832773cc2c01327ec714064cc869eaa85d..00ab5bf924d9df1597853b792302d0a2e6f64d8a 100644
(file)
--- 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;
}