summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-06-29 16:41:05 +0300
committerTor Lillqvist <tml@collabora.com>2017-06-29 16:41:12 +0300
commitf44265e2583b1c89b800e24f7c5db42dbcd4cb39 (patch)
treea85bf185021b34739a5a5be97d5b201111ee4ee2
parent81356e787354e11243c76b63dcca185068b5d12a (diff)
No need for this variable to be static
Change-Id: Iaf3de050f622a12d896682ada4ad02beca28e1ff
-rw-r--r--sc/source/core/tool/interpr1.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx
index c69f16034dbd..c217ff819e1d 100644
--- a/sc/source/core/tool/interpr1.cxx
+++ b/sc/source/core/tool/interpr1.cxx
@@ -8588,7 +8588,7 @@ bool SAL_CALL lcl_getScriptClass(sal_uInt32 currentChar)
(MsLangId::getSystemLanguage() == LANGUAGE_JAPANESE) )
return true;
sal_uInt16 i;
- static bool bRet = false;
+ bool bRet = false;
UBlockCode block = ublock_getCode(currentChar);
for ( i = 0; i < SAL_N_ELEMENTS(scriptList); i++) {
if (block <= scriptList[i].to) break;