]> git.saurik.com Git - wxWidgets.git/commitdiff
oops, typo fix
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 19 Oct 2001 16:30:46 +0000 (16:30 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 19 Oct 2001 16:30:46 +0000 (16:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12089 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/textctrl.h

index 9ed802bd3553d0dc5adb735a076c00c6f2cf32d3..3ecf9e17f9d8b918b037d846cf394a92b3d0d1c3 100644 (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);