]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/file.cpp
toplevel code transferred to wxTopLevelWindow
[wxWidgets.git] / src / common / file.cpp
index f76cdda44189f4ef251f4917bd64d59ea1dc4e1e..e7834e082a39f0cb409f8b53b622bb7ff8d39e3e 100644 (file)
@@ -478,7 +478,7 @@ bool wxTempFile::Open(const wxString& strName)
 {
     m_strName = strName;
 
-    m_strTemp = wxFileName::CreateTempFileName(strName);
+    m_strTemp = wxFileName::CreateTempFileName(strName, &m_file);
 
     if ( m_strTemp.empty() )
     {
@@ -486,13 +486,6 @@ bool wxTempFile::Open(const wxString& strName)
         return FALSE;
     }
 
-    // actually open the file now (it must already exist)
-    if ( !m_file.Open(m_strTemp, wxFile::write) )
-    {
-        // opening existing file failed?
-        return FALSE;
-    }
-
 #ifdef __UNIX__
     // the temp file should have the same permissions as the original one
     mode_t mode;