summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-15 10:01:46 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-15 10:01:46 +0300
commitc2161066746ca5767a8ff9a7759729940788d917 (patch)
tree99800240ccaf5e690981b669d4e09319a7f04b92
parentbf5a6730a50cc089d32be5168ca4925910974e0c (diff)
Blind fix attempt for MSVC compilation error
Change-Id: Ibc5bd847806cf3490d598d2016a623e2f42b0043
-rw-r--r--sw/source/core/unocore/unoidx.cxx2
1 files changed, 1 insertions, 1 deletions
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))