diff options
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/access/acccell.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/core/access/acccell.cxx b/sw/source/core/access/acccell.cxx index 84c334778f87..4cdf3abb834b 100644 --- a/sw/source/core/access/acccell.cxx +++ b/sw/source/core/access/acccell.cxx @@ -398,8 +398,7 @@ uno::Any SwAccessibleCell::getMinimumValue( ) static OUString ReplaceOneChar(OUString oldOUString, OUString replacedChar, OUString replaceStr) { - int iReplace = -1; - iReplace = oldOUString.lastIndexOf(replacedChar); + int iReplace = oldOUString.lastIndexOf(replacedChar); if (iReplace > -1) { for(;iReplace>-1;) |