From 3afa16bc197030fa949e3233667649a8c5d43f61 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 6 Apr 2000 13:41:10 +0000 Subject: [PATCH] wxMkdir/Rmdir clash fixed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7070 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/filefn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/filefn.h b/include/wx/filefn.h index 3c31ff8c8e..c90b482522 100644 --- a/include/wx/filefn.h +++ b/include/wx/filefn.h @@ -121,8 +121,8 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString; #define wxAccess access #define wxEof eof - #define wxMkdir mkdir - #define wxRmdir rmdir + #define wxMkDir mkdir + #define wxRmDir rmdir #define wxTell(fd) lseek(fd, 0, SEEK_CUR)