diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-01-14 15:02:05 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-01-14 15:02:05 +0100 |
commit | 87be4885d369ba06ab090c26fde23c52656b69a8 (patch) | |
tree | 385ad0f6b13a3336d21a094a346051884411d7e1 /include | |
parent | 03631195ff7b73c25e5a3f5554e2eb293ffc31c5 (diff) |
-Werror=misleading-indentation (GCC 6)
Change-Id: Ic28a87df35ef3087071f87c4bc74c4c274169b51
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svdpagv.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/svx/svdpagv.hxx b/include/svx/svdpagv.hxx index 7db356586020..868570765d6d 100644 --- a/include/svx/svdpagv.hxx +++ b/include/svx/svdpagv.hxx @@ -193,7 +193,11 @@ public: Rectangle& MarkBound() { return aMarkBound; } Rectangle& MarkSnap() { return aMarkSnap; } - void SetLayerVisible(const OUString& rName, bool bShow = true) { SetLayer(rName, aLayerVisi, bShow); if(!bShow) AdjHdl(); InvalidateAllWin(); } + void SetLayerVisible(const OUString& rName, bool bShow = true) { + SetLayer(rName, aLayerVisi, bShow); + if(!bShow) AdjHdl(); + InvalidateAllWin(); + } bool IsLayerVisible(const OUString& rName) const { return IsLayer(rName, aLayerVisi); } void SetLayerLocked(const OUString& rName, bool bLock = true) { SetLayer(rName, aLayerLock, bLock); if(bLock) AdjHdl(); } |