diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-03-29 18:54:45 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-03-29 19:16:31 +0100 |
commit | 1db5a63365b6e35267d0a12ad0c0ab95b1256e75 (patch) | |
tree | d3c56dfbb5dee72a280526c7aee0fe0993dd605b /editeng | |
parent | 5e04ec1e7d5adc9f14ea803d765aa42f8b0e08cd (diff) |
typo: selektion -> selection
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/uno/unofored.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editeng/source/uno/unofored.cxx b/editeng/source/uno/unofored.cxx index 88fce45d84b5..d395baa10a9c 100644 --- a/editeng/source/uno/unofored.cxx +++ b/editeng/source/uno/unofored.cxx @@ -190,7 +190,7 @@ sal_uInt16 GetSvxEditEngineItemState( EditEngine& rEditEngine, const ESelection& // get list of char attribs rEditEngine.GetCharAttribs( nPara, aAttribs ); - sal_Bool bEmpty = sal_True; // we found no item inside the selektion of this paragraph + sal_Bool bEmpty = sal_True; // we found no item inside the selection of this paragraph sal_Bool bGaps = sal_False; // we found items but theire gaps between them sal_Int32 nLastEnd = nPos; @@ -203,11 +203,11 @@ sal_uInt16 GetSvxEditEngineItemState( EditEngine& rEditEngine, const ESelection& const sal_Bool bEmptyPortion = i->nStart == i->nEnd; if((!bEmptyPortion && i->nStart >= nEndPos) || (bEmptyPortion && i->nStart > nEndPos)) - break; // break if we are already behind our selektion + break; // break if we are already behind our selection if((!bEmptyPortion && i->nEnd <= nPos) || (bEmptyPortion && i->nEnd < nPos)) - continue; // or if the attribute ends before our selektion + continue; // or if the attribute ends before our selection if(i->pAttr->Which() != nWhich) continue; // skip if is not the searched item |