diff options
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/misc/svxacorr.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx index 912968a96e68..d032d4c90a53 100644 --- a/editeng/source/misc/svxacorr.cxx +++ b/editeng/source/misc/svxacorr.cxx @@ -723,7 +723,7 @@ bool SvxAutoCorrect::FnChgWeightUnderl( SvxAutoCorrDoc& rDoc, const OUString& rT // at the beginning: _ or * after Space with the folloeing !Space // at the end: _ or * before Space (word delimiter?) - sal_Unicode c, cInsChar = rTxt[ nEndPos ]; // underline or bold + sal_Unicode cInsChar = rTxt[ nEndPos ]; // underline or bold if( ++nEndPos != rTxt.getLength() && !IsWordDelim( rTxt[ nEndPos ] ) ) return false; @@ -737,7 +737,7 @@ bool SvxAutoCorrect::FnChgWeightUnderl( SvxAutoCorrDoc& rDoc, const OUString& rT while( nPos ) { - switch( c = rTxt[ --nPos ] ) + switch( sal_Unicode c = rTxt[ --nPos ] ) { case '_': case '*': |