Lines Matching refs:_xSection
56 …void lcl_collectElements(const uno::Reference< report::XSection >& _xSection,::std::vector< uno::R… in lcl_collectElements() argument
58 if ( _xSection.is() ) in lcl_collectElements()
60 sal_Int32 nCount = _xSection->getCount(); in lcl_collectElements()
64 … uno::Reference< drawing::XShape> xShape(_xSection->getByIndex(nCount-1),uno::UNO_QUERY); in lcl_collectElements()
66 _xSection->remove(xShape); in lcl_collectElements()
72 …void lcl_insertElements(const uno::Reference< report::XSection >& _xSection,const ::std::vector< u… in lcl_insertElements() argument
74 if ( _xSection.is() ) in lcl_insertElements()
84 _xSection->add(*aIter); in lcl_insertElements()
96 …void lcl_setValues(const uno::Reference< report::XSection >& _xSection,const ::std::vector< ::std:… in lcl_setValues() argument
98 if ( _xSection.is() ) in lcl_setValues()
106 _xSection->setPropertyValue(aIter->first,aIter->second); in lcl_setValues()
162 void OSectionUndo::collectControls(const uno::Reference< report::XSection >& _xSection) in collectControls() argument
168 uno::Reference< beans::XPropertySetInfo> xInfo = _xSection->getPropertySetInfo(); in collectControls()
175 …m_aValues.push_back(::std::pair< ::rtl::OUString ,uno::Any>(pIter->Name,_xSection->getPropertyValu… in collectControls()
177 lcl_collectElements(_xSection,m_aControls); in collectControls()