More Unicode compilation fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@7770 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven
2000-07-19 08:20:03 +00:00
parent 888b0f22a9
commit 66b3ec7f9a
3 changed files with 7 additions and 7 deletions

View File

@@ -1057,7 +1057,7 @@ wxRenameFile (const wxString& file1, const wxString& file2)
bool wxRemoveFile(const wxString& file)
{
#if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__WATCOMC__)
int flag = wxRemove(wxFNSTRINGCAST file.fn_str());
int flag = wxRemove(file);
#elif defined( __WXMAC__ )
int flag = unlink(wxUnix2MacFilename( file ));
#else