[Libreoffice-commits] .: sw/source
Stephan Bergmann
sbergmann at kemper.freedesktop.org
Thu Sep 8 02:37:41 PDT 2011
sw/source/core/inc/sectfrm.hxx | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
New commits:
commit 682dd34020ace097015d5742fff2d8ef06723247
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Thu Sep 8 11:36:05 2011 +0200
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.
diff --git a/sw/source/core/inc/sectfrm.hxx b/sw/source/core/inc/sectfrm.hxx
index 73a9e1f..37840b5 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 );
More information about the Libreoffice-commits
mailing list