diff options
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/epptso.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/func/fuzoom.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/slidesorter/controller/SlsSelectionFunction.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/filter/eppt/epptso.cxx b/sd/source/filter/eppt/epptso.cxx index 41126aedf82d..eae0e5d8c4ab 100644 --- a/sd/source/filter/eppt/epptso.cxx +++ b/sd/source/filter/eppt/epptso.cxx @@ -2846,7 +2846,7 @@ void PPTWriter::ImplWritePage( const PHLayout& rLayout, EscherSolverContainer& a } aPropOpt.CreateShadowProperties( mXPropSet ); - maRect.Justify(); + maRect.Normalize(); if ( mnAngle ) ImplFlipBoundingBox( aPropOpt ); aPropOpt.CreateShapeProperties( mXShape ); diff --git a/sd/source/ui/func/fuzoom.cxx b/sd/source/ui/func/fuzoom.cxx index 871d594d3368..bfa01c179d08 100644 --- a/sd/source/ui/func/fuzoom.cxx +++ b/sd/source/ui/func/fuzoom.cxx @@ -131,7 +131,7 @@ bool FuZoom::MouseMove(const MouseEvent& rMEvt) { ::tools::Rectangle aRect(aBeginPos, aEndPos); aZoomRect = aRect; - aZoomRect.Justify(); + aZoomRect.Normalize(); mpViewShell->DrawMarkRect(aZoomRect); bVisible = true; } diff --git a/sd/source/ui/slidesorter/controller/SlsSelectionFunction.cxx b/sd/source/ui/slidesorter/controller/SlsSelectionFunction.cxx index c710a4c1be51..450fdd294a55 100644 --- a/sd/source/ui/slidesorter/controller/SlsSelectionFunction.cxx +++ b/sd/source/ui/slidesorter/controller/SlsSelectionFunction.cxx @@ -1390,7 +1390,7 @@ void MultiSelectionModeHandler::UpdateSelection() mnSecondIndex = nIndexUnderMouse; Range aRange (mnAnchorIndex, mnSecondIndex); - aRange.Justify(); + aRange.Normalize(); for (sal_Int32 nIndex=0; nIndex<nPageCount; ++nIndex) { |