diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-23 17:18:07 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-23 17:18:07 +0200 |
commit | ec2f9439759478087279d363035c112e6df891ed (patch) | |
tree | a1099b0c309836f101e6fa2a2598c64b66d2d323 /include | |
parent | ed62053678166ee6ac76b4fa15569b843e280721 (diff) |
Remove Boost Pointer Container Library related functions
...no longer used since the last boost:ptr_vector<SvLBoxItem> has been removed
in 63de1888f67dc43c30d5a102651b7c2738243efb "svtools: replace boost::ptr_vector
with std::vector<std::unique_ptr>"
Change-Id: Icd5e9671bb79b0bb2e3b12ef004ac9ec112981f8
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/treelistbox.hxx | 12 |
1 files changed, 0 insertions, 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<SvLBoxItem*>(&rSrc)); - return p; -} - -inline void delete_clone(const SvLBoxItem* p) -{ - delete p; -} - // ********************************************************************* // ****************************** SvTreeListBox ************************ // ********************************************************************* |