diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-03 15:58:22 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-04 08:36:11 +0200 |
commit | fb0644e8f0a944c10b654233813ab40792e78e0a (patch) | |
tree | 411696fe0ee42747fb0c131a6ff80ff3d16e48a6 /sfx2/source/sidebar | |
parent | b3499a00fc7c1ce3393577c592b9ac6771d2a922 (diff) |
loplugin:unusedfields in sfx2
Change-Id: I9f57545ca4ee5159a095f9b35267d298ccc7fb4e
Reviewed-on: https://gerrit.libreoffice.org/39476
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/sidebar')
-rw-r--r-- | sfx2/source/sidebar/DeckLayouter.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sfx2/source/sidebar/DeckLayouter.cxx b/sfx2/source/sidebar/DeckLayouter.cxx index 5a37474148c5..b0d177ec7406 100644 --- a/sfx2/source/sidebar/DeckLayouter.cxx +++ b/sfx2/source/sidebar/DeckLayouter.cxx @@ -47,11 +47,10 @@ namespace { css::ui::LayoutSize maLayoutSize; sal_Int32 mnDistributedHeight; sal_Int32 mnWeight; - sal_Int32 mnPanelIndex; bool mbShowTitleBar; LayoutItem() - : mpPanel(),maLayoutSize(0,0,0),mnDistributedHeight(0),mnWeight(0),mnPanelIndex(0),mbShowTitleBar(true) + : mpPanel(),maLayoutSize(0,0,0),mnDistributedHeight(0),mnWeight(0),mbShowTitleBar(true) {} }; tools::Rectangle LayoutPanels ( @@ -115,7 +114,6 @@ void DeckLayouter::LayoutDeck ( for (sal_Int32 nIndex(0),nCount(rPanels.size()); nIndex<nCount; ++nIndex) { aLayoutItems[nIndex].mpPanel = rPanels[nIndex]; - aLayoutItems[nIndex].mnPanelIndex = nIndex; } aBox = LayoutPanels( aBox, |