Lines Matching refs:nSize
147 void SetSize( EHistoryType eHistory, sal_uInt32 nSize );
157 void impl_truncateList (EHistoryType eHistory, sal_uInt32 nSize);
207 sal_uInt32 nSize = 0 ; in GetSize() local
215 xListAccess->getPropertyValue(s_sPickListSize) >>= nSize; in GetSize()
219 xListAccess->getPropertyValue(s_sURLHistorySize) >>= nSize; in GetSize()
223 xListAccess->getPropertyValue(s_sHelpBookmarksSize) >>= nSize; in GetSize()
235 return nSize; in GetSize()
242 void SvtHistoryOptions_Impl::SetSize( EHistoryType eHistory, sal_uInt32 nSize ) in SetSize() argument
253 if(nSize!=GetSize(ePICKLIST)) in SetSize()
255 xListAccess->setPropertyValue(s_sPickListSize, css::uno::makeAny(nSize)); in SetSize()
261 if(nSize!=GetSize(eHISTORY)) in SetSize()
263 xListAccess->setPropertyValue(s_sURLHistorySize, css::uno::makeAny(nSize)); in SetSize()
269 if(nSize!=GetSize(eHELPBOOKMARKS)) in SetSize()
271 xListAccess->setPropertyValue(s_sHelpBookmarksSize, css::uno::makeAny(nSize)); in SetSize()
280 impl_truncateList (eHistory, nSize); in SetSize()
289 void SvtHistoryOptions_Impl::impl_truncateList ( EHistoryType eHistory, sal_uInt32 nSize ) in impl_truncateList() argument
325 if (nSize < nLength) in impl_truncateList()
327 for (sal_uInt32 i=nLength-1; i>=nSize; --i) in impl_truncateList()
681 void SvtHistoryOptions::SetSize( EHistoryType eHistory, sal_uInt32 nSize ) in SetSize() argument
684 m_pDataContainer->SetSize( eHistory, nSize ); in SetSize()