]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ffile.cpp
better control of what need refresh.
[wxWidgets.git] / src / common / ffile.cpp
index 4e1aea21ecce0669d15c8a441479fc8fd558b9cb..4449ec42a2c6c0a1a18ab0ba56862b311c3a7e83 100644 (file)
@@ -56,7 +56,21 @@ bool wxFFile::Open(const wxChar *filename, const char *mode)
 {
     wxASSERT_MSG( !m_fp, _T("should close or detach the old file first") );
 
+#if wxUSE_UNICODE
+    char *tmp_fname;
+    size_t fname_len;
+
+    fname_len = wxStrlen(filename)+1;
+    tmp_fname = new char[fname_len];
+    wxWX2MB(tmp_fname, filename, fname_len);
+
+    m_fp = fopen(tmp_fname, mode);
+
+    delete tmp_fname;
+#else
     m_fp = fopen(filename, mode);
+#endif
+
 
     if ( !m_fp )
     {
@@ -74,7 +88,7 @@ bool wxFFile::Close()
 {
     if ( IsOpened() )
     {
-        if ( !fclose(m_fp) )
+        if ( fclose(m_fp) != 0 )
         {
             wxLogSysError(_("can't close file '%s'"), m_name.c_str());