oops, typo fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12089 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-10-19 16:30:46 +00:00
parent d73e6791fc
commit d20a079e3a

View File

@@ -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);