From ec2f9439759478087279d363035c112e6df891ed Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 23 Oct 2015 17:18:07 +0200 Subject: Remove Boost Pointer Container Library related functions ...no longer used since the last boost:ptr_vector has been removed in 63de1888f67dc43c30d5a102651b7c2738243efb "svtools: replace boost::ptr_vector with std::vector" Change-Id: Icd5e9671bb79b0bb2e3b12ef004ac9ec112981f8 --- include/svtools/treelistbox.hxx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/include/svtools/treelistbox.hxx b/include/svtools/treelistbox.hxx index 086589183467..667f8ddd3195 100644 --- a/include/svtools/treelistbox.hxx +++ b/include/svtools/treelistbox.hxx @@ -177,18 +177,6 @@ public: virtual void Clone(SvLBoxItem* pSource) = 0; }; -inline SvLBoxItem* new_clone(const SvLBoxItem& rSrc) -{ - SvLBoxItem* p = rSrc.Create(); - p->Clone(const_cast(&rSrc)); - return p; -} - -inline void delete_clone(const SvLBoxItem* p) -{ - delete p; -} - // ********************************************************************* // ****************************** SvTreeListBox ************************ // ********************************************************************* -- cgit