From: Vadim Zeitlin Date: Sun, 27 May 2001 03:11:49 +0000 (+0000) Subject: oops, typo leading to compilation problem fixed X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1341230e80db9f532df40e28e8cb799136c4883d oops, typo leading to compilation problem fixed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10344 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/config.cpp b/src/common/config.cpp index 5ec9090807..da8e5b0901 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -207,10 +207,11 @@ bool wxConfigBase::Write(const wxString& key, bool value) 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 tmp; // Required for BC++