summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/sectfrm.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2011-09-08 11:36:05 +0200
committerStephan Bergmann <sbergman@redhat.com>2011-09-08 11:37:34 +0200
commit682dd34020ace097015d5742fff2d8ef06723247 (patch)
treed47a155d1d8d3c6e455676f0cc7562ced1ac1f0e /sw/source/core/inc/sectfrm.hxx
parent10094dc88bc3b16eb25454205e5db1f556f675dd (diff)
Make moved bitfield flags from prev commit into true bools.
As discussed on IRC, no apparent reason to have them as bitfileds in the first place.
Diffstat (limited to 'sw/source/core/inc/sectfrm.hxx')
-rw-r--r--sw/source/core/inc/sectfrm.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/inc/sectfrm.hxx b/sw/source/core/inc/sectfrm.hxx
index 73a9e1f0efb7..37840b53d88a 100644
--- a/sw/source/core/inc/sectfrm.hxx
+++ b/sw/source/core/inc/sectfrm.hxx
@@ -45,11 +45,11 @@ class SwLayouter;
class SwSectionFrm: public SwLayoutFrm, public SwFlowFrm
{
SwSection* pSection;
- bool bFtnAtEnd: 1; // footnotes at the end of section
- bool bEndnAtEnd: 1; // endnotes at the end of section
- bool bCntntLock: 1; // content locked
- bool bOwnFtnNum: 1; // special numbering of footnotes
- bool bFtnLock: 1; // ftn, don't leave this section bwd
+ bool bFtnAtEnd; // footnotes at the end of section
+ bool bEndnAtEnd; // endnotes at the end of section
+ bool bCntntLock; // content locked
+ bool bOwnFtnNum; // special numbering of footnotes
+ bool bFtnLock; // ftn, don't leave this section bwd
void _UpdateAttr( const SfxPoolItem*, const SfxPoolItem*, sal_uInt8 &,
SwAttrSetChg *pa = 0, SwAttrSetChg *pb = 0 );