From 85825e0fd54551735ef05b8484f71974734b9135 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 22 Apr 2016 10:08:07 +0200 Subject: Avoid reserved identifiers Change-Id: I27ff0f4f0eb395d7e0a60dd604758c220a3134c4 --- sw/source/uibase/uiview/viewmdi.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sw/source/uibase/uiview/viewmdi.cxx') diff --git a/sw/source/uibase/uiview/viewmdi.cxx b/sw/source/uibase/uiview/viewmdi.cxx index d7b652425263..18023fd3e1df 100644 --- a/sw/source/uibase/uiview/viewmdi.cxx +++ b/sw/source/uibase/uiview/viewmdi.cxx @@ -62,13 +62,13 @@ using namespace ::com::sun::star::frame; void SwView::SetZoom( SvxZoomType eZoomType, short nFactor, bool bViewOnly ) { bool const bCursorIsVisible(m_pWrtShell->IsCursorVisible()); - _SetZoom( GetEditWin().GetOutputSizePixel(), eZoomType, nFactor, bViewOnly ); + SetZoom_( GetEditWin().GetOutputSizePixel(), eZoomType, nFactor, bViewOnly ); // fdo#40465 force the cursor to stay in view whilst zooming if (bCursorIsVisible) m_pWrtShell->ShowCursor(); } -void SwView::_SetZoom( const Size &rEditSize, SvxZoomType eZoomType, +void SwView::SetZoom_( const Size &rEditSize, SvxZoomType eZoomType, short nFactor, bool bViewOnly ) { bool bUnLockView = !m_pWrtShell->IsViewLocked(); @@ -280,7 +280,7 @@ IMPL_LINK_TYPED( SwView, WindowChildEventListener, VclWindowEvent&, rEvent, void } } -void SwView::_CreateScrollbar( bool bHori ) +void SwView::CreateScrollbar( bool bHori ) { vcl::Window *pMDI = &GetViewFrame()->GetWindow(); VclPtr& ppScrollbar = bHori ? m_pHScrollbar : m_pVScrollbar; -- cgit