From e874f8672e7aef6c01ddc808395bdb8db22ba0b1 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sun, 18 Apr 2004 16:37:44 +0000 Subject: [PATCH] MSL support also for MSW git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26860 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filefn.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index fbf8733e9f..2bb2a42402 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -1309,7 +1309,8 @@ bool wxRemoveFile(const wxString& file) || defined(__BORLANDC__) \ || defined(__WATCOMC__) \ || defined(__DMC__) \ - || defined(__GNUWIN32__) + || defined(__GNUWIN32__) \ + || (defined(__MWERKS__) && defined(__MSL__)) int res = wxRemove(file); #elif defined(__WXMAC__) int res = unlink(wxFNCONV(file));