Small changes for VC++ 4 compilation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5879 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2000-02-06 21:25:27 +00:00
parent 95bf655c50
commit 69d16e3ef8
5 changed files with 12 additions and 3 deletions

View File

@@ -178,9 +178,12 @@ void MyApp::DoStreamDemo(wxCommandEvent& WXUNUSED(event))
tmp.Printf( _T("Float: %f\n"), f );
textCtrl.WriteText( tmp );
// This doesn't compile (at least with VC++ 4)
#if 0
std_file_input >> str;
tmp.Printf( _T("String: %s\n"), str.c_str() );
textCtrl.WriteText( tmp );
#endif
textCtrl.WriteText( "\nReading from wxFileInputStream:\n" );