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 | |
parent | 5e04ec1e7d5adc9f14ea803d765aa42f8b0e08cd (diff) |
typo: selektion -> selection
-rw-r--r-- | editeng/source/uno/unofored.cxx | 6 | ||||
-rw-r--r-- | starmath/source/accessibility.cxx | 6 | ||||
-rw-r--r-- | svx/source/table/tablecontroller.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/uibase/wrtsh/wrtsh1.cxx | 2 |
4 files changed, 8 insertions, 8 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 diff --git a/starmath/source/accessibility.cxx b/starmath/source/accessibility.cxx index 446941cb6809..4288e4e97c1c 100644 --- a/starmath/source/accessibility.cxx +++ b/starmath/source/accessibility.cxx @@ -1146,7 +1146,7 @@ static sal_uInt16 GetSvxEditEngineItemState( EditEngine& rEditEngine, const ESel // get list of char attribs rEditEngine.GetCharAttribs( nPara, aAttribs ); - bool bEmpty = true; // we found no item inside the selektion of this paragraph + bool bEmpty = true; // we found no item inside the selection of this paragraph bool bGaps = false; // we found items but theire gaps between them sal_Int32 nLastEnd = nPos; @@ -1158,10 +1158,10 @@ static sal_uInt16 GetSvxEditEngineItemState( EditEngine& rEditEngine, const ESel 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 diff --git a/svx/source/table/tablecontroller.cxx b/svx/source/table/tablecontroller.cxx index 42b9c4631720..7fef31665bdb 100644 --- a/svx/source/table/tablecontroller.cxx +++ b/svx/source/table/tablecontroller.cxx @@ -271,7 +271,7 @@ bool SvxTableController::onMouseButtonDown(const MouseEvent& rMEvt, Window* pWin if( rMEvt.IsRight() && eHit != SDRTABLEHIT_NONE ) return true; // right click will become context menu - // for cell selektion with the mouse remember our first hit + // for cell selection with the mouse remember our first hit if( mbLeftButtonDown ) { RemoveSelection(); diff --git a/sw/source/core/uibase/wrtsh/wrtsh1.cxx b/sw/source/core/uibase/wrtsh/wrtsh1.cxx index 5d16ec867c3c..e34a91d7ce4a 100644 --- a/sw/source/core/uibase/wrtsh/wrtsh1.cxx +++ b/sw/source/core/uibase/wrtsh/wrtsh1.cxx @@ -451,7 +451,7 @@ sal_Bool SwWrtShell::InsertOleObject( const svt::EmbeddedObjectRef& xRef, SwFlyF //2. If the cursor is at the end of an non empty paragraph a paragraph // break should be insertet. StarMath objects are character bound and // no break should be inserted. - //3. If an selektion is passed to a StarMath object, this object should + //3. If an selection is passed to a StarMath object, this object should // not be activated. sal_False should be returned then. bool bStarMath = true; sal_Bool bActivate = sal_True; |