summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2021-07-19 15:02:20 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2021-07-19 21:52:45 +0200
commit323b26e119672f1468fbdcbb7c2578465e562094 (patch)
treeb2ce3af1bc0b467b9ad7de08833af132b7fa6186
parent214a738528780f308c00ef4d4953b57fd84c2c41 (diff)
sw: fix indentation for better readibility
After 9a8c8053b4fb322edb1e45b891307cdad1f3d41f < Resolves tdf#113171 - Text box must not toggle command > Change-Id: I867a012f18634ee8f83bfa2899f97eec1fae4630 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119202 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r--sw/source/uibase/uiview/viewstat.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/uibase/uiview/viewstat.cxx b/sw/source/uibase/uiview/viewstat.cxx
index f21772ffe28d..22e8d9451efa 100644
--- a/sw/source/uibase/uiview/viewstat.cxx
+++ b/sw/source/uibase/uiview/viewstat.cxx
@@ -602,8 +602,8 @@ void SwView::GetDrawState(SfxItemSet &rSet)
if ( bWeb )
rSet.DisableItem( nWhich );
else
- if (nWhich != SID_DRAW_TEXT) //tdf#113171
- rSet.Put( SfxBoolItem( nWhich, m_nDrawSfxId == nWhich ) );
+ if (nWhich != SID_DRAW_TEXT) //tdf#113171
+ rSet.Put( SfxBoolItem( nWhich, m_nDrawSfxId == nWhich ) );
break;
case SID_DRAW_TEXT_VERTICAL:
@@ -611,8 +611,8 @@ void SwView::GetDrawState(SfxItemSet &rSet)
if ( bWeb || !SvtLanguageOptions().IsVerticalTextEnabled() )
rSet.DisableItem( nWhich );
else
- if (nWhich != SID_DRAW_TEXT_VERTICAL) //tdf#113171
- rSet.Put( SfxBoolItem( nWhich, m_nDrawSfxId == nWhich ) );
+ if (nWhich != SID_DRAW_TEXT_VERTICAL) //tdf#113171
+ rSet.Put( SfxBoolItem( nWhich, m_nDrawSfxId == nWhich ) );
break;
case SID_DRAW_TEXT_MARQUEE: