From 7dc6e2cb1778aed68e9bef64a7a196c94a72b7ec Mon Sep 17 00:00:00 2001 From: Daniel Robertson Date: Wed, 4 Nov 2015 13:20:59 -0500 Subject: Remove unneeded bitfield Remove unecessary bitfield from editeng::SvxLRSpaceItem Change-Id: I255d3cd7d28e470ea59187c9e488d0a4a9350d3d Reviewed-on: https://gerrit.libreoffice.org/19786 Tested-by: Jenkins Reviewed-by: jan iversen --- include/editeng/lrspitem.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/editeng') diff --git a/include/editeng/lrspitem.hxx b/include/editeng/lrspitem.hxx index 6dd5cc0d53b7..191aa4b88156 100644 --- a/include/editeng/lrspitem.hxx +++ b/include/editeng/lrspitem.hxx @@ -56,9 +56,9 @@ class EDITENG_DLLPUBLIC SvxLRSpaceItem : public SfxPoolItem sal_uInt16 nPropFirstLineOfst, nPropLeftMargin, nPropRightMargin; short nFirstLineOfst; // First-line indent _always_ relative to nTxtLeft - bool bAutoFirst : 1; // Automatic calculation of the first line indent - bool bExplicitZeroMarginValRight : 1; - bool bExplicitZeroMarginValLeft : 1; + bool bAutoFirst; // Automatic calculation of the first line indent + bool bExplicitZeroMarginValRight; + bool bExplicitZeroMarginValLeft; void AdjustLeft(); // nLeftMargin and nTxtLeft are being adjusted. -- cgit