diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-09-29 17:50:10 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2015-09-30 12:25:15 +0000 |
commit | 00d2eeebc8b1842c4ab7a544552f259208ee0e25 (patch) | |
tree | 64ae3f73380dc210f997b70449cb09faceb9e6f6 /editeng | |
parent | 5e2644400521b90e9e4ff9253a9abfc9bf642cb4 (diff) |
Fix typos
Change-Id: Iaa9dd3f02f21947742643349d3b878126017477d
Reviewed-on: https://gerrit.libreoffice.org/18947
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/misc/hangulhanja.cxx | 2 | ||||
-rw-r--r-- | editeng/source/misc/svxacorr.cxx | 4 | ||||
-rw-r--r-- | editeng/source/outliner/outleeng.hxx | 2 | ||||
-rw-r--r-- | editeng/source/rtf/svxrtf.cxx | 2 | ||||
-rw-r--r-- | editeng/source/uno/unofored.cxx | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/editeng/source/misc/hangulhanja.cxx b/editeng/source/misc/hangulhanja.cxx index 885525c5d1a0..34cee4ac8444 100644 --- a/editeng/source/misc/hangulhanja.cxx +++ b/editeng/source/misc/hangulhanja.cxx @@ -85,7 +85,7 @@ namespace editeng const vcl::Font* m_pTargetFont; // target font of new replacement text sal_Int32 m_nConvOptions; // text conversion options (as used by 'getConversions') bool m_bIsInteractive; // specifies if the conversion requires user interaction - // (and likeley a specialised dialog) or if it is to run + // (and likely a specialised dialog) or if it is to run // automatically without any user interaction. // True for Hangul / Hanja conversion // False for Chinese simlified / traditional conversion diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx index 4f1cde233efa..912968a96e68 100644 --- a/editeng/source/misc/svxacorr.cxx +++ b/editeng/source/misc/svxacorr.cxx @@ -1055,7 +1055,7 @@ bool SvxAutoCorrect::FnCapitalStartSentence( SvxAutoCorrDoc& rDoc, sChar = rCC.titlecase(sChar); //see fdo#56740 bool bRet = sChar[0] != cSave && rDoc.ReplaceRange( nSttPos, 1, sChar ); - // Parahaps someone wants to have the word + // Perhaps someone wants to have the word if( bRet && SaveWordCplSttLst & nFlags ) rDoc.SaveCpltSttWord( CapitalStartSentence, nSttPos, sWord, cSave ); @@ -2751,7 +2751,7 @@ SvxAutocorrWordList::Content SvxAutocorrWordList::getSortedContent() const // convert from hash to set permanantly if ( mpImpl->maSet.empty() ) { - // This beasty has some O(N log(N)) in a terribly slow ICU collate fn. + // This beast has some O(N log(N)) in a terribly slow ICU collate fn. for (AutocorrWordHashType::const_iterator it = mpImpl->maHash.begin(); it != mpImpl->maHash.end(); ++it) mpImpl->maSet.insert( it->second ); mpImpl->maHash.clear(); diff --git a/editeng/source/outliner/outleeng.hxx b/editeng/source/outliner/outleeng.hxx index 1ac87acd176a..12d5005ece50 100644 --- a/editeng/source/outliner/outleeng.hxx +++ b/editeng/source/outliner/outleeng.hxx @@ -30,7 +30,7 @@ class OutlinerEditEng : public EditEngine protected: - // derived from EditEngine. Allows Outliner objetcs to provide + // derived from EditEngine. Allows Outliner objects to provide // bullet access to the EditEngine. virtual const SvxNumberFormat* GetNumberFormat( sal_Int32 nPara ) const SAL_OVERRIDE; diff --git a/editeng/source/rtf/svxrtf.cxx b/editeng/source/rtf/svxrtf.cxx index 1e11a0f30570..a7c81ae7211b 100644 --- a/editeng/source/rtf/svxrtf.cxx +++ b/editeng/source/rtf/svxrtf.cxx @@ -918,7 +918,7 @@ void SvxRTFParser::AttrGroupEnd() // process the current, delete from Stack // at the beginning of a paragraph? Move back one position sal_Int32 nNd = pInsPos->GetNodeIdx(); MovePos(false); - // if can not move backward then later dont move forward ! + // if can not move backward then later don't move forward ! bCrsrBack = nNd != pInsPos->GetNodeIdx(); } diff --git a/editeng/source/uno/unofored.cxx b/editeng/source/uno/unofored.cxx index f8de955a724f..0d90aa959ebd 100644 --- a/editeng/source/uno/unofored.cxx +++ b/editeng/source/uno/unofored.cxx @@ -216,7 +216,7 @@ SfxItemState GetSvxEditEngineItemState( EditEngine& rEditEngine, const ESelectio // if we already found an item if( pParaItem ) { - // ... and its different to this one than the state is dont care + // ... and its different to this one than the state is don't care if(*pParaItem != *(i->pAttr)) return SfxItemState::DONTCARE; } |