]> git.saurik.com Git - wxWidgets.git/commitdiff
Compilation fix
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Sat, 16 Apr 2005 20:47:24 +0000 (20:47 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Sat, 16 Apr 2005 20:47:24 +0000 (20:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33681 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/widgets/textctrl.cpp

index e9282d977f659283a8b977a5e21c1ba92b9536eb..02c94cdc0cbeacb4d2a66d4fa2a8c5667e455f8d 100644 (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