]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/file.h
Added wxTE_PROCESS_TAB
[wxWidgets.git] / include / wx / file.h
index 31c2aa6699a88685ce1f2213584a467db24fce6f..50074970d31a887e63798a0a15f72b862e6a35aa 100644 (file)
@@ -120,7 +120,7 @@ public:
   bool Error() const { return m_error; }
 
   // dtor closes the file if opened
-  virtual ~wxFile(); // Temporally virtual because of wxFileStream: I'll change back in a near future.
+  ~wxFile();
 
 private:
   // copy ctor and assignment operator are private because
@@ -169,6 +169,10 @@ public:
  ~wxTempFile();
 
 private:
+  // no copy ctor/assignment operator
+  wxTempFile(const wxTempFile&);
+  wxTempFile& operator=(const wxTempFile&);
+
   wxString  m_strName,  // name of the file to replace in Commit()
             m_strTemp;  // temporary file name
   wxFile    m_file;     // the temporary file