summaryrefslogtreecommitdiff
path: root/sw/source/uibase/docvw/PageBreakWin.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/docvw/PageBreakWin.cxx')
-rw-r--r--sw/source/uibase/docvw/PageBreakWin.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/docvw/PageBreakWin.cxx b/sw/source/uibase/docvw/PageBreakWin.cxx
index 10ebf51b4991..a629f2cc5742 100644
--- a/sw/source/uibase/docvw/PageBreakWin.cxx
+++ b/sw/source/uibase/docvw/PageBreakWin.cxx
@@ -368,8 +368,8 @@ void SwPageBreakWin::UpdatePosition( const Point* pEvtPt )
// Place the button on the left or right?
::tools::Rectangle aVisArea = GetEditWin()->LogicToPixel( GetEditWin()->GetView().GetVisArea() );
- long nLineLeft = std::max<sal_Int32>( nPgLeft, aVisArea.Left() );
- long nLineRight = std::min<sal_Int32>( nPgRight, aVisArea.Right() );
+ long nLineLeft = std::max( nPgLeft, aVisArea.Left() );
+ long nLineRight = std::min( nPgRight, aVisArea.Right() );
long nBtnLeft = nLineLeft;
if ( m_pMousePt )