Kaydet (Commit) 33a7c0d0 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: loplugin:bodynotinblock

Change-Id: Ie14bd84dbf6606506ed8a47fea660c15a7852679
üst ecf5384f
...@@ -587,9 +587,8 @@ void SwEditWin::UpdatePointer(const Point &rLPt, sal_uInt16 nModifier ) ...@@ -587,9 +587,8 @@ void SwEditWin::UpdatePointer(const Point &rLPt, sal_uInt16 nModifier )
// which kind of text pointer have we to show - horz / vert - ? // which kind of text pointer have we to show - horz / vert - ?
if( PointerStyle::Text == eStyle && rSh.IsInVerticalText( &rLPt )) if( PointerStyle::Text == eStyle && rSh.IsInVerticalText( &rLPt ))
eStyle = PointerStyle::TextVertical; eStyle = PointerStyle::TextVertical;
else else if (rSh.GetViewOptions()->CanHideWhitespace() &&
if (rSh.GetViewOptions()->CanHideWhitespace() && rSh.GetLayout()->IsBetweenPages(rLPt))
rSh.GetLayout()->IsBetweenPages(rLPt))
{ {
if (rSh.GetViewOptions()->IsHideWhitespaceMode()) if (rSh.GetViewOptions()->IsHideWhitespaceMode())
eStyle = PointerStyle::ShowWhitespace; eStyle = PointerStyle::ShowWhitespace;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment