summaryrefslogtreecommitdiff
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
parent951282a27a9dd4c64fc206fcbdd805b4cb602816 (diff)
Fix typos
Change-Id: I9cc5e13681b047fe772704b42796e210ad070601 Reviewed-on: https://gerrit.libreoffice.org/71148 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--connectivity/source/drivers/file/fcode.cxx2
-rw-r--r--editeng/source/editeng/impedit2.cxx4
-rw-r--r--sw/source/uibase/docvw/edtwin.cxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/drivers/file/fcode.cxx b/connectivity/source/drivers/file/fcode.cxx
index 90b7bbdd8c43..e3731671ae10 100644
--- a/connectivity/source/drivers/file/fcode.cxx
+++ b/connectivity/source/drivers/file/fcode.cxx
@@ -85,7 +85,7 @@ OOperandParam::OOperandParam(OSQLParseNode const * pNode, sal_Int32 _nPos)
// set up Parameter-Column with default type, can be specified more precisely later using Describe-Parameter
- // save Identity (not escpecially necessary here, just for the sake of symmetry)
+ // save Identity (not especially necessary here, just for the sake of symmetry)
// todo
// OColumn* pColumn = new OFILEColumn(aParameterName,eDBType,255,0,SQL_FLAGS_NULLALLOWED);
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 == '\'' ) ) )
diff --git a/sw/source/uibase/docvw/edtwin.cxx b/sw/source/uibase/docvw/edtwin.cxx
index 69a9b025f694..4e9095568392 100644
--- a/sw/source/uibase/docvw/edtwin.cxx
+++ b/sw/source/uibase/docvw/edtwin.cxx
@@ -5318,7 +5318,7 @@ void SwEditWin::Command( const CommandEvent& rCEvt )
if ( !sRecord.isEmpty() )
{
// 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 aCh = sRecord[sRecord.getLength() - 1];
SvxAutoCorrCfg& rACfg = SvxAutoCorrCfg::Get();