From: Vadim Zeitlin Date: Fri, 19 Oct 2001 16:30:46 +0000 (+0000) Subject: oops, typo fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d20a079e3a126dd3790dec2c83f93c48a308c743 oops, typo fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12089 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/textctrl.h b/include/wx/textctrl.h index 9ed802bd35..3ecf9e17f9 100644 --- a/include/wx/textctrl.h +++ b/include/wx/textctrl.h @@ -337,7 +337,7 @@ class WXDLLEXPORT wxStreamToTextRedirector { public: wxStreamToTextRedirector(wxTextCtrl *text, wxSTD ostream *ostr = NULL) - : m_ostr(ostr ? *ostr : wxSTD::cout) + : m_ostr(ostr ? *ostr : wxSTD cout) { m_sbufOld = m_ostr.rdbuf(); m_ostr.rdbuf(text);