From 79f2eb8055bc0fcd70493bbb0757bcbbc37237cf Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot Date: Sun, 14 Dec 2003 18:53:36 +0000 Subject: [PATCH] corrected wxUSE_UNICODE conditional compilation tests git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24840 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/regex.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/regex.cpp b/src/common/regex.cpp index 44599dfa90..8983f98d02 100644 --- a/src/common/regex.cpp +++ b/src/common/regex.cpp @@ -49,7 +49,7 @@ #include "wx/regex.h" -#ifdef wxUSE_UNICODE +#if wxUSE_UNICODE #define regerror wx_regerror #define regfree wx_regfree #endif @@ -266,7 +266,7 @@ bool wxRegExImpl::Matches(const wxChar *str, int flags) const } // do match it -#ifdef wxUSE_UNICODE +#if wxUSE_UNICODE rm_detail_t rd; int rc = wx_regexec(&self->m_RegEx, str, wxStrlen(str), &rd, m_nMatches, m_Matches, flagsRE); #else -- 2.50.0