]> git.saurik.com Git - wxWidgets.git/commitdiff
must close output file before reading back from it
authorVáclav Slavík <vslavik@fastmail.fm>
Thu, 30 Oct 2008 11:22:31 +0000 (11:22 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Thu, 30 Oct 2008 11:22:31 +0000 (11:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56599 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/typetest/typetest.cpp

index 4b5906cecd140aebc16fb7b61fe16bbda2cc2abe..cbd16a5c030639df7a46f2a0e2eae699aa5220c0 100644 (file)
@@ -166,6 +166,8 @@ void MyApp::DoStreamDemo(wxCommandEvent& WXUNUSED(event))
     text_output << str << _T("\n");
     std_file_output << str.ToAscii() << "\n";
 
+    std_file_output.close();
+
     textCtrl.WriteText( _T("\nReading from ifstream:\n") );
 
     wxSTD ifstream std_file_input( "test_std.dat" );