Kaydet (Commit) ec2f9439 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Remove Boost Pointer Container Library related functions

...no longer used since the last boost:ptr_vector<SvLBoxItem> has been removed
in 63de1888 "svtools: replace boost::ptr_vector
with std::vector<std::unique_ptr>"

Change-Id: Icd5e9671bb79b0bb2e3b12ef004ac9ec112981f8
üst ed620536
......@@ -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 ************************
// *********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment