From c2161066746ca5767a8ff9a7759729940788d917 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 15 Apr 2014 10:01:46 +0300 Subject: Blind fix attempt for MSVC compilation error Change-Id: Ibc5bd847806cf3490d598d2016a623e2f42b0043 --- sw/source/core/unocore/unoidx.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/source/core/unocore/unoidx.cxx b/sw/source/core/unocore/unoidx.cxx index 2cf1eca799fd..d911f34f48f3 100644 --- a/sw/source/core/unocore/unoidx.cxx +++ b/sw/source/core/unocore/unoidx.cxx @@ -2853,7 +2853,7 @@ throw (lang::IllegalArgumentException, lang::IndexOutOfBoundsException, { const OUString sTokenType = lcl_AnyToString(pProperties[j].Value); - for (TokenType const* pTokenType = g_TokenTypes; + for (const TokenType *pTokenType = g_TokenTypes; pTokenType->pName; ++pTokenType) { if (sTokenType.equalsAscii(pTokenType->pName)) -- cgit