Kaydet (Commit) 682dd340 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

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.
üst 10094dc8
...@@ -45,11 +45,11 @@ class SwLayouter; ...@@ -45,11 +45,11 @@ class SwLayouter;
class SwSectionFrm: public SwLayoutFrm, public SwFlowFrm class SwSectionFrm: public SwLayoutFrm, public SwFlowFrm
{ {
SwSection* pSection; SwSection* pSection;
bool bFtnAtEnd: 1; // footnotes at the end of section bool bFtnAtEnd; // footnotes at the end of section
bool bEndnAtEnd: 1; // endnotes at the end of section bool bEndnAtEnd; // endnotes at the end of section
bool bCntntLock: 1; // content locked bool bCntntLock; // content locked
bool bOwnFtnNum: 1; // special numbering of footnotes bool bOwnFtnNum; // special numbering of footnotes
bool bFtnLock: 1; // ftn, don't leave this section bwd bool bFtnLock; // ftn, don't leave this section bwd
void _UpdateAttr( const SfxPoolItem*, const SfxPoolItem*, sal_uInt8 &, void _UpdateAttr( const SfxPoolItem*, const SfxPoolItem*, sal_uInt8 &,
SwAttrSetChg *pa = 0, SwAttrSetChg *pb = 0 ); SwAttrSetChg *pa = 0, SwAttrSetChg *pb = 0 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment