Compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33681 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2005-04-16 20:47:24 +00:00
parent 5c99abbe83
commit 05772b8495

View File

@@ -891,7 +891,7 @@ void TextWidgetsPage::OnStreamRedirector(wxCommandEvent& WXUNUSED(event))
#if wxHAS_TEXT_WINDOW_STREAM
wxStreamToTextRedirector redirect(m_text);
wxString str( _T("Outputed to cout, appears in wxTextCtrl!") );
cout << str << endl;
wxSTD cout << str << wxSTD endl;
#else
wxMessageBox(_T("This wxWidgets build does not support wxStreamToTextRedirector"));
#endif