diff options
-rw-r--r-- | editeng/source/editeng/editdoc.cxx | 2 | ||||
-rw-r--r-- | editeng/source/outliner/outlvw.cxx | 4 | ||||
-rw-r--r-- | sc/source/core/data/table3.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/view/viewfrm.cxx | 2 | ||||
-rw-r--r-- | svx/source/sdr/primitive2d/sdrolecontentprimitive2d.cxx | 2 | ||||
-rw-r--r-- | vcl/source/gdi/region.cxx | 6 |
6 files changed, 9 insertions, 9 deletions
diff --git a/editeng/source/editeng/editdoc.cxx b/editeng/source/editeng/editdoc.cxx index a67add018a31..b5b2e4c8383e 100644 --- a/editeng/source/editeng/editdoc.cxx +++ b/editeng/source/editeng/editdoc.cxx @@ -1309,7 +1309,7 @@ void ContentNode::ExpandAttribs( sal_Int32 nIndex, sal_Int32 nNew, SfxItemPool& // 0: Expand empty attribute, if at insertion point else if ( pAttrib->IsEmpty() ) { - // Do not check Index, a emty one could only be there + // Do not check Index, a empty one could only be there // When later checking it anyhow: // Special caase: Start == 0; AbsLen == 1, nNew = 1 // => Expand, because of paragraph break! diff --git a/editeng/source/outliner/outlvw.cxx b/editeng/source/outliner/outlvw.cxx index 92f967877e24..be1bc254921a 100644 --- a/editeng/source/outliner/outlvw.cxx +++ b/editeng/source/outliner/outlvw.cxx @@ -64,7 +64,7 @@ OutlinerView::~OutlinerView() void OutlinerView::Paint( const Rectangle& rRect, OutputDevice* pTargetDevice ) { - // For the first Paint/KeyInput/Drop an emty Outliner is turned into + // For the first Paint/KeyInput/Drop an empty Outliner is turned into // an Outliner with exactly one paragraph. if( pOwner->bFirstParaIsEmpty ) pOwner->Insert( OUString() ); @@ -74,7 +74,7 @@ void OutlinerView::Paint( const Rectangle& rRect, OutputDevice* pTargetDevice ) bool OutlinerView::PostKeyEvent( const KeyEvent& rKEvt, vcl::Window* pFrameWin ) { - // For the first Paint/KeyInput/Drop an emty Outliner is turned into + // For the first Paint/KeyInput/Drop an empty Outliner is turned into // an Outliner with exactly one paragraph. if( pOwner->bFirstParaIsEmpty ) pOwner->Insert( OUString() ); diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx index 044802eb63e4..92773b684526 100644 --- a/sc/source/core/data/table3.cxx +++ b/sc/source/core/data/table3.cxx @@ -1921,7 +1921,7 @@ bool ScTable::DoSubTotals( ScSubTotalParam& rParam ) SCROW nEndRow = rParam.nRow2; // will change sal_uInt16 i; - // Remove emty rows at the end + // Remove empty rows at the end // so that all exceeding (MAXROW) can be found by InsertRow (#35180#) // If sorted, all empty rows are at the end. SCSIZE nEmpty = GetEmptyLinesInBlock( nStartCol, nStartRow, nEndCol, nEndRow, DIR_BOTTOM ); diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx index 4c27c321cbd3..29736a9a4edf 100644 --- a/sfx2/source/view/viewfrm.cxx +++ b/sfx2/source/view/viewfrm.cxx @@ -590,7 +590,7 @@ void SfxViewFrame::ExecReload_Impl( SfxRequest& rReq ) bool bHandsOff = ( pMedium->GetURLObject().GetProtocol() == INetProtocol::File && !xOldObj->IsDocShared() ); - // Emty existing SfxMDIFrames for this Document + // Empty existing SfxMDIFrames for this Document // in native format or R/O, open it now for editing? SfxObjectShellLock xNewObj; diff --git a/svx/source/sdr/primitive2d/sdrolecontentprimitive2d.cxx b/svx/source/sdr/primitive2d/sdrolecontentprimitive2d.cxx index 2a75b4b545d0..ea4ffa396d30 100644 --- a/svx/source/sdr/primitive2d/sdrolecontentprimitive2d.cxx +++ b/svx/source/sdr/primitive2d/sdrolecontentprimitive2d.cxx @@ -54,7 +54,7 @@ namespace drawinglayer #ifdef WNT // Little point in displaying the "broken OLE" graphic on OSes that don't have real OLE, maybe? if(GRAPHIC_NONE == aGraphic.GetType()) { - // no source, use fallback resource emty OLE graphic + // no source, use fallback resource empty OLE graphic aGraphic = SdrOle2Obj::GetEmptyOLEReplacementGraphic(); bScaleContent = true; } diff --git a/vcl/source/gdi/region.cxx b/vcl/source/gdi/region.cxx index 1543d83d6e81..943559582d4d 100644 --- a/vcl/source/gdi/region.cxx +++ b/vcl/source/gdi/region.cxx @@ -973,7 +973,7 @@ bool vcl::Region::Intersect( const vcl::Region& rRegion ) if(IsEmpty()) { - // local region is empty, cannot get more emty than that. Nothing to do + // local region is empty, cannot get more empty than that. Nothing to do return true; } @@ -984,7 +984,7 @@ bool vcl::Region::Intersect( const vcl::Region& rRegion ) if(!aThisPolyPoly.count()) { - // local region is empty, cannot get more emty than that. Nothing to do + // local region is empty, cannot get more empty than that. Nothing to do return true; } @@ -1013,7 +1013,7 @@ bool vcl::Region::Intersect( const vcl::Region& rRegion ) if(!pCurrent) { - // local region is empty, cannot get more emty than that. Nothing to do + // local region is empty, cannot get more empty than that. Nothing to do return true; } |