summaryrefslogtreecommitdiff
path: root/editeng/source/editeng/impedit2.cxx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-04-23 17:50:59 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-04-24 07:12:20 +0200
commit615cccccc81e9c594ae1ae67f5965cb61384ee55 (patch)
tree8801ced041191218204d09e4768df405e5a5c108 /editeng/source/editeng/impedit2.cxx
parent951282a27a9dd4c64fc206fcbdd805b4cb602816 (diff)
Fix typos
Change-Id: I9cc5e13681b047fe772704b42796e210ad070601 Reviewed-on: https://gerrit.libreoffice.org/71148 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'editeng/source/editeng/impedit2.cxx')
-rw-r--r--editeng/source/editeng/impedit2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/editeng/impedit2.cxx b/editeng/source/editeng/impedit2.cxx
index 11023be03dd4..6b4b8da61b2e 100644
--- a/editeng/source/editeng/impedit2.cxx
+++ b/editeng/source/editeng/impedit2.cxx
@@ -364,7 +364,7 @@ void ImpEditEngine::Command( const CommandEvent& rCEvt, EditView* pView )
if( mpIMEInfos )
{
// #102812# convert quotes in IME text
- // works on the last input character, this is escpecially in Korean text often done
+ // works on the last input character, this is especially in Korean text often done
// quotes that are inside of the string are not replaced!
// Borrowed from sw: edtwin.cxx
if ( mpIMEInfos->nLen )
@@ -373,7 +373,7 @@ void ImpEditEngine::Command( const CommandEvent& rCEvt, EditView* pView )
aSel.Min().SetIndex( aSel.Min().GetIndex() + mpIMEInfos->nLen-1 );
aSel.Max().SetIndex( aSel.Max().GetIndex() + mpIMEInfos->nLen );
// #102812# convert quotes in IME text
- // works on the last input character, this is escpecially in Korean text often done
+ // works on the last input character, this is especially in Korean text often done
// quotes that are inside of the string are not replaced!
const sal_Unicode nCharCode = aSel.Min().GetNode()->GetChar( aSel.Min().GetIndex() );
if ( ( GetStatus().DoAutoCorrect() ) && ( ( nCharCode == '\"' ) || ( nCharCode == '\'' ) ) )