include/editeng/lrspitem.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 7dc6e2cb1778aed68e9bef64a7a196c94a72b7ec Author: Daniel Robertson <[email protected]> Date: Wed Nov 4 13:20:59 2015 -0500 Remove unneeded bitfield Remove unecessary bitfield from editeng::SvxLRSpaceItem Change-Id: I255d3cd7d28e470ea59187c9e488d0a4a9350d3d Reviewed-on: https://gerrit.libreoffice.org/19786 Tested-by: Jenkins <[email protected]> Reviewed-by: jan iversen <[email protected]> diff --git a/include/editeng/lrspitem.hxx b/include/editeng/lrspitem.hxx index 6dd5cc0..191aa4b 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. _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
