X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dcf924a345ea8ffbc1cf6b40b5f75c6005e504c0..b0655a87f40073577bdb8ba4378e5e683a163d44:/src/common/file.cpp diff --git a/src/common/file.cpp b/src/common/file.cpp index 07c0f058fa..6702d2dd83 100644 --- a/src/common/file.cpp +++ b/src/common/file.cpp @@ -20,12 +20,17 @@ // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" -#include "wx/defs.h" #ifdef __BORLANDC__ - #pragma hdrstop + #pragma hdrstop #endif +#ifndef WX_PRECOMP + #include "wx/defs.h" +#endif + +#if wxUSE_FILE + // standard #if defined(__WXMSW__) && !defined(__GNUWIN32__) && !defined(__WXWINE__) #include @@ -573,3 +578,5 @@ void wxTempFile::Discard() if ( remove(m_strTemp.fn_str()) != 0 ) wxLogSysError(_("can't remove temporary file '%s'"), m_strTemp.c_str()); } + +#endif \ No newline at end of file