]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/typetest/typetest.cpp
Moved OGL to new locations.
[wxWidgets.git] / samples / typetest / typetest.cpp
index 389666843507f2d8e97b7e06d00fc053bc07fd8d..fd0c99b1e9c86efdb1eec7b71f1f8301abf3597a 100644 (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" );