summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-06-07 20:25:45 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-06-08 09:35:54 +0200
commitaed5ce3547cc6c28c2cb25d77f3982c53100fee8 (patch)
tree239d2f394d39c666df0b9a9bd333c42076059041 /sfx2/source/dialog
parent1f07faf2caf8fd8df6fa8824ff5030b01c0c0634 (diff)
loplugin:unusedfields
Change-Id: I9758fd606c7d4c251a3ac06661d642a47260b5fc Reviewed-on: https://gerrit.libreoffice.org/73674 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/dialog')
-rw-r--r--sfx2/source/dialog/tabdlg.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx
index 9cc1161769ff..a078525f5c03 100644
--- a/sfx2/source/dialog/tabdlg.cxx
+++ b/sfx2/source/dialog/tabdlg.cxx
@@ -97,12 +97,10 @@ typedef std::vector<Data_Impl*> SfxTabDlgData_Impl;
struct TabDlg_Impl
{
- bool bModal : 1,
- bHideResetBtn : 1;
+ bool bHideResetBtn : 1;
SfxTabDlgData_Impl aData;
explicit TabDlg_Impl( sal_uInt8 nCnt ) :
- bModal ( true ),
bHideResetBtn ( false )
{
aData.reserve( nCnt );