summaryrefslogtreecommitdiff
path: root/editeng/source/misc/svxacorr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'editeng/source/misc/svxacorr.cxx')
-rw-r--r--editeng/source/misc/svxacorr.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index e3552f79bbc2..2a261aebd244 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -1794,16 +1794,16 @@ static bool lcl_FindAbbreviation(const SvStringsISortDtor* pList, const OUString
if( nPos < pList->size() )
{
OUString sLowerWord(sWord.toAsciiLowerCase());
- OUString pAbk;
+ OUString sAbr;
for( sal_uInt16 n = nPos;
n < pList->size() &&
- '~' == ( pAbk = (*pList)[ n ])[ 0 ];
+ '~' == ( sAbr = (*pList)[ n ])[ 0 ];
++n )
{
// ~ and ~. are not allowed!
- if( 2 < pAbk.getLength() && pAbk.getLength() - 1 <= sWord.getLength() )
+ if( 2 < sAbr.getLength() && sAbr.getLength() - 1 <= sWord.getLength() )
{
- OUString sLowerAbk(pAbk.toAsciiLowerCase());
+ OUString sLowerAbk(sAbr.toAsciiLowerCase());
for (sal_Int32 i = sLowerAbk.getLength(), ii = sLowerWord.getLength(); i;)
{
if( !--i ) // agrees