summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorDaniel Robertson <danlrobertson89@gmail.com>2015-11-04 13:20:59 -0500
committerjan iversen <jani@documentfoundation.org>2015-12-24 11:55:22 +0000
commit7dc6e2cb1778aed68e9bef64a7a196c94a72b7ec (patch)
treef80067623a6043c8f0b6d2c31b880191e8ece123 /include/editeng
parent9a383588ada2146775dbe19405d5dda28be8d940 (diff)
Remove unneeded bitfield
Remove unecessary bitfield from editeng::SvxLRSpaceItem Change-Id: I255d3cd7d28e470ea59187c9e488d0a4a9350d3d Reviewed-on: https://gerrit.libreoffice.org/19786 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/lrspitem.hxx6
1 files changed, 3 insertions, 3 deletions
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.