X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/92980e9076469956e1e2cb94df97d0f8d873114a..2bffed64c5a201f0de04752dba6b25d1cc53d1e0:/src/common/file.cpp diff --git a/src/common/file.cpp b/src/common/file.cpp index 99582fae28..d5a136e704 100644 --- a/src/common/file.cpp +++ b/src/common/file.cpp @@ -502,9 +502,9 @@ bool wxTempFile::Open(const wxString& strName) #ifdef __UNIX__ // the temp file should have the same permissions as the original one mode_t mode; - + wxStructStat st; - if ( stat(m_strName.fn_str(), &st) == 0 ) + if ( stat( (const char*) m_strName.fn_str(), &st) == 0 ) { mode = st.st_mode; } @@ -517,7 +517,7 @@ bool wxTempFile::Open(const wxString& strName) umask(mask); } - if ( chmod(m_strTemp.mb_str(), mode) == -1 ) + if ( chmod( (const char*) m_strTemp.fn_str(), mode) == -1 ) { wxLogSysError(_("Failed to set temporary file permissions")); }