]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/file.cpp
No significant change
[wxWidgets.git] / src / common / file.cpp
index aca1dc4d26a1f2760ce0ac0169247746bcf65194..da27b425d1cb317f27864d880125c228bfa6ea33 100644 (file)
@@ -60,7 +60,7 @@
     #include  <unistd.h>
     #include  <sys/stat.h>
     #ifdef __GNUWIN32__
-        #include <windows.h>
+        #include "wx/msw/wrapwin.h"
     #endif
 #elif defined(__DOS__)
     #if defined(__WATCOMC__)
@@ -717,7 +717,7 @@ bool wxTempFile::Commit()
         return FALSE;
     }
 
-    if ( wxRenameFile(m_strTemp, m_strName) != 0 ) {
+    if ( !wxRenameFile(m_strTemp, m_strName)  ) {
         wxLogSysError(_("can't commit changes to file '%s'"), m_strName.c_str());
         return FALSE;
     }