X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/191ab39aeed8b9491abc12b769f9ab89fd3e8921..78e848cac9c973346dcf598f3c1b942b63dd2821:/samples/typetest/typetest.cpp diff --git a/samples/typetest/typetest.cpp b/samples/typetest/typetest.cpp index 44abbdc4c4..639e063fdb 100644 --- a/samples/typetest/typetest.cpp +++ b/samples/typetest/typetest.cpp @@ -188,7 +188,7 @@ void MyApp::DoStreamDemo(wxCommandEvent& WXUNUSED(event)) wxFileInputStream file_input( "test_wx.dat" ); wxBufferedInputStream buf_input( file_input ); - wxTextInputStream text_input( buf_input ); + wxTextInputStream text_input( file_input ); text_input >> si; tmp.Printf( _T("Signed int: %d\n"), si );