From 0417cdceb91160e3e9eb6ada561649a1b15858b2 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 9 Mar 2016 20:17:32 +0100 Subject: Avoid reserved identifier Change-Id: Iba05a29b75666a595e58dfe753bba0825d09f61f --- i18npool/source/inputchecker/inputsequencechecker_hi.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'i18npool') diff --git a/i18npool/source/inputchecker/inputsequencechecker_hi.cxx b/i18npool/source/inputchecker/inputsequencechecker_hi.cxx index 0b5c3e2f2c26..3d7b415fe6c8 100644 --- a/i18npool/source/inputchecker/inputsequencechecker_hi.cxx +++ b/i18npool/source/inputchecker/inputsequencechecker_hi.cxx @@ -99,7 +99,7 @@ static const sal_uInt16 dev_cell_check[14][14] = { /* 13 */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } /* HD */ }; -sal_Bool _DEV_Composible[2][2] = { +sal_Bool DEV_Composible[2][2] = { /* Mode 0 */ {sal_True, sal_True }, // PASSTHROUGH = 0 /* Mode 1 */ {sal_False, sal_True} // STRICT = 1 }; @@ -118,7 +118,7 @@ InputSequenceChecker_hi::checkInputSequence(const OUString& Text, sal_uInt16 ch1 = getCharType(inputChar); sal_uInt16 ch2 = getCharType(currentChar); - return (_DEV_Composible[inputCheckMode][dev_cell_check[ch2][ch1]]); + return (DEV_Composible[inputCheckMode][dev_cell_check[ch2][ch1]]); } sal_Int32 SAL_CALL -- cgit