oops, typo leading to compilation problem fixed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10344 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2001-05-27 03:11:49 +00:00
parent 0da25f69ba
commit 1341230e80

View File

@ -207,10 +207,11 @@ bool wxConfigBase::Write(const wxString& key, bool value)
return Write(key, l); return Write(key, l);
} }
bool wxConfigBase::Write( const wxString &key, const wxChar *text ) bool wxConfigBase::Write(const wxString &key, const wxChar *text)
{ {
return Write(key, str) ; return Write(key, text);
} }
wxString wxConfigBase::ExpandEnvVars(const wxString& str) const wxString wxConfigBase::ExpandEnvVars(const wxString& str) const
{ {
wxString tmp; // Required for BC++ wxString tmp; // Required for BC++