]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/file.h
Don't always override the default background colours.
[wxWidgets.git] / include / wx / file.h
index df901520ef7b90f266053b5261a6b195515e9dbd..5f00e49c11b462fdefaaee50fa823744821e58ff 100644 (file)
@@ -197,6 +197,10 @@ public:
   bool Write(const wxString& str, const wxMBConv& conv = wxMBConvUTF8())
     { return m_file.Write(str, conv); }
 
+  // flush data: can be called before closing file to ensure that data was
+  // correctly written out
+  bool Flush() { return m_file.Flush(); }
+
   // different ways to close the file
     // validate changes and delete the old file of name m_strName
   bool Commit();