summaryrefslogtreecommitdiff
path: root/include/svtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-23 17:18:07 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-23 17:18:07 +0200
commitec2f9439759478087279d363035c112e6df891ed (patch)
treea1099b0c309836f101e6fa2a2598c64b66d2d323 /include/svtools
parented62053678166ee6ac76b4fa15569b843e280721 (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/svtools')
-rw-r--r--include/svtools/treelistbox.hxx12
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 ************************
// *********************************************************************