diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-08-30 15:27:48 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-08-30 15:27:48 +0200 |
commit | 0c9a71a7b2fd0a004e980724460a3763b76eb772 (patch) | |
tree | 394278fbf5e430f7feb6c0f70e0a4fc1e004443e /editeng/source/misc | |
parent | 56f21320f3214be0b361c09e08cf100a647d908a (diff) |
loplugin:stringconstant: adapt to improved OUStringLiteral1 (editeng)
Change-Id: If8d2eb5e02a107cc1805e349a70df54160fed02a
Diffstat (limited to 'editeng/source/misc')
-rw-r--r-- | editeng/source/misc/svxacorr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx index 490ae67e4d45..b726fe1209ff 100644 --- a/editeng/source/misc/svxacorr.cxx +++ b/editeng/source/misc/svxacorr.cxx @@ -1099,7 +1099,7 @@ bool SvxAutoCorrect::FnCorrectCapsLock( SvxAutoCorrDoc& rDoc, const OUString& rT aConverted += rCC.lowercase(OUString(rTxt[i])); else // This is not an alphabetic letter. Leave it as-is. - aConverted += OUString( rTxt[i] ); + aConverted += OUStringLiteral1( rTxt[i] ); } // Replace the word. |