]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/file.h
Added nominal wxPG_PROP_READONLY support for editor controls other than wxTextCtrl...
[wxWidgets.git] / include / wx / file.h
index df901520ef7b90f266053b5261a6b195515e9dbd..23e46278a7030f3d9ba59bf65055322f204b675e 100644 (file)
@@ -42,7 +42,7 @@ enum wxPosixPermissions
     wxS_IWOTH = 00002,
     wxS_IXOTH = 00001,
 
-    // longer but more readable synonims for the constants above:
+    // longer but more readable synonyms for the constants above:
     wxPOSIX_USER_READ = wxS_IRUSR,
     wxPOSIX_USER_WRITE = wxS_IWUSR,
     wxPOSIX_USER_EXECUTE = wxS_IXUSR,
@@ -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();