From fed85ddb05a2d636087b43e81cd460d6216b7413 Mon Sep 17 00:00:00 2001 From: Markus Scherer Date: Thu, 19 Sep 2013 23:49:53 +0000 Subject: [PATCH] ICU-10142 more direct property access X-SVN-Rev: 34413 --- icu4c/source/common/ubidi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/common/ubidi.c b/icu4c/source/common/ubidi.c index 2ba416c08d5..75afd0604f4 100644 --- a/icu4c/source/common/ubidi.c +++ b/icu4c/source/common/ubidi.c @@ -910,7 +910,7 @@ bracketProcessChar(BracketData *bd, int32_t position, DirProp dirProp) { match=u_getBidiPairedBracket(c); /* get the matching char */ if(match==c) /* if no matching char */ return TRUE; - if(u_getIntPropertyValue(c, UCHAR_BIDI_PAIRED_BRACKET_TYPE)!=U_BPT_OPEN) + if(ubidi_getPairedBracketType(bd->pBiDi->bdp, c)!=U_BPT_OPEN) return TRUE; /* not an opening bracket */ /* special case: process synonyms create an opening entry for each synonym */