diff options
Diffstat (limited to 'sw/inc/docstyle.hxx')
-rw-r--r-- | sw/inc/docstyle.hxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sw/inc/docstyle.hxx b/sw/inc/docstyle.hxx index 3385650a6e71..9c05f541b34d 100644 --- a/sw/inc/docstyle.hxx +++ b/sw/inc/docstyle.hxx @@ -97,6 +97,9 @@ public: sal_Bool IsPhysical() const { return bPhysical; } void SetPhysical(sal_Bool bPhys); + virtual void SetHidden( sal_Bool bHidden ); + virtual sal_Bool IsHidden( ) const; + /** add optional parameter <bResetIndentAttrsAtParagraphStyle>, default value sal_False, which indicates that the indent attributes at a paragraph style should be reset in case that a list style is applied to the paragraph style and @@ -155,12 +158,13 @@ class SwStyleSheetIterator : public SfxStyleSheetIterator, public SfxListener void AppendStyleList(const boost::ptr_vector<String>& rLst, sal_Bool bUsed, + sal_Bool bTestHidden, sal_uInt16 nSection, char cType); public: SwStyleSheetIterator( SwDocStyleSheetPool* pBase, - SfxStyleFamily eFam, sal_uInt16 n=0xFFFF ); + SfxStyleFamily eFam, sal_uInt16 n=SFXSTYLEBIT_ALL ); virtual ~SwStyleSheetIterator(); virtual sal_uInt16 Count(); @@ -193,7 +197,7 @@ public: virtual SfxStyleSheetBase& Make(const String&, SfxStyleFamily, sal_uInt16 nMask, sal_uInt16 nPos = 0xffff); virtual SfxStyleSheetBase* Find( const String&, SfxStyleFamily eFam, - sal_uInt16 n=0xFFFF ); + sal_uInt16 n=SFXSTYLEBIT_ALL ); virtual bool SetParent( SfxStyleFamily eFam, const String &rStyle, const String &rParent ); |