Lines Matching refs:rSet

65     bool getBulletState( const SfxItemSet& rSet, SfxStyleSheetBase* pSheet, bool& rState );
66 bool getBulletState( const SfxItemSet& rSet, sal_uInt16 nWhich, bool& rState );
68 bool transformItemSet( SfxItemSet& rSet, bool bNumbering );
70 bool removeAlienAttributes( SfxItemSet& rSet );
71 bool removeAlienAttributes( SfxItemSet& rSet, sal_uInt16 nWhich );
153 SfxItemSet& rSet = rSheet.GetItemSet(); in transformStyle() local
158 transformItemSet( rSet, bState ); in transformStyle()
159 removeAlienAttributes( rSet ); in transformStyle()
281 bool SdTransformOOo2xDocument::getBulletState( const SfxItemSet& rSet, SfxStyleSheetBase* pSheet, b… in getBulletState() argument
283 if( getBulletState( rSet, EE_PARA_XMLATTRIBS, rState ) ) in getBulletState()
286 if( getBulletState( rSet, SDRATTR_XMLATTRIBUTES, rState ) ) in getBulletState()
295 bool SdTransformOOo2xDocument::getBulletState( const SfxItemSet& rSet, sal_uInt16 nWhich, bool& rSt… in getBulletState() argument
297 if( (rSet.GetItemState( nWhich ) == SFX_ITEM_SET) ) in getBulletState()
299 …const SvXMLAttrContainerItem& rAttr = *static_cast< const SvXMLAttrContainerItem* >( rSet.GetItem(… in getBulletState()
316 bool SdTransformOOo2xDocument::transformItemSet( SfxItemSet& rSet, bool bNumbering ) in transformItemSet() argument
321 SvxLRSpaceItem aItem( *static_cast<const SvxLRSpaceItem*>(rSet.GetItem( EE_PARA_LRSPACE )) ); in transformItemSet()
326 rSet.Put( aItem ); in transformItemSet()
334 bool SdTransformOOo2xDocument::removeAlienAttributes( SfxItemSet& rSet ) in removeAlienAttributes() argument
336 …return removeAlienAttributes( rSet, EE_PARA_XMLATTRIBS ) | removeAlienAttributes( rSet, SDRATTR_XM… in removeAlienAttributes()
339 bool SdTransformOOo2xDocument::removeAlienAttributes( SfxItemSet& rSet, sal_uInt16 nWhich ) in removeAlienAttributes() argument
341 if( (rSet.GetItemState( nWhich ) == SFX_ITEM_SET) ) in removeAlienAttributes()
343 …const SvXMLAttrContainerItem& rAttr = *static_cast< const SvXMLAttrContainerItem* >( rSet.GetItem(… in removeAlienAttributes()
352 rSet.ClearItem( nWhich ); in removeAlienAttributes()
365 rSet.Put( aNewItem ); in removeAlienAttributes()