Lines Matching refs:_xSection
57 …void lcl_collectElements(const uno::Reference< report::XSection >& _xSection,::std::vector< uno::R… in lcl_collectElements() argument
59 if ( _xSection.is() ) in lcl_collectElements()
61 sal_Int32 nCount = _xSection->getCount(); in lcl_collectElements()
65 uno::Reference< drawing::XShape> xShape(_xSection->getByIndex(nCount-1),uno::UNO_QUERY); in lcl_collectElements()
67 _xSection->remove(xShape); in lcl_collectElements()
73 …void lcl_insertElements(const uno::Reference< report::XSection >& _xSection,const ::std::vector< u… in lcl_insertElements() argument
75 if ( _xSection.is() ) in lcl_insertElements()
85 _xSection->add(*aIter); in lcl_insertElements()
97 …void lcl_setValues(const uno::Reference< report::XSection >& _xSection,const ::std::vector< ::std:… in lcl_setValues() argument
99 if ( _xSection.is() ) in lcl_setValues()
107 _xSection->setPropertyValue(aIter->first,aIter->second); in lcl_setValues()
163 void OSectionUndo::collectControls(const uno::Reference< report::XSection >& _xSection) in collectControls() argument
169 uno::Reference< beans::XPropertySetInfo> xInfo = _xSection->getPropertySetInfo(); in collectControls()
176 …m_aValues.push_back(::std::pair< ::rtl::OUString ,uno::Any>(pIter->Name,_xSection->getPropertyValu… in collectControls()
178 lcl_collectElements(_xSection,m_aControls); in collectControls()