From: Vadim Zeitlin Date: Mon, 27 Nov 2006 21:48:21 +0000 (+0000) Subject: don't define wxMBFILES for Borland, this breaks compilation with wxUSE_UNICODE_MSLU... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bc4b4779100b79e6603ba2ecc986b5f0981c4cd6 don't define wxMBFILES for Borland, this breaks compilation with wxUSE_UNICODE_MSLU (bug 1592939) and genereally speaking doesn't make any sense git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43698 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/strconv.h b/include/wx/strconv.h index c56ae9af2f..d48ae1e44b 100644 --- a/include/wx/strconv.h +++ b/include/wx/strconv.h @@ -460,8 +460,8 @@ extern WXDLLIMPEXP_DATA_BASE(wxMBConv *) wxConvUI; // filename conversion macros // ---------------------------------------------------------------------------- -// filenames are multibyte on Unix and probably widechar on Windows? -#if defined(__UNIX__) || defined(__BORLANDC__) || defined(__WXMAC__ ) +// filenames are multibyte on Unix and widechar on Windows +#if defined(__UNIX__) || defined(__WXMAC__) #define wxMBFILES 1 #else #define wxMBFILES 0