removed unused iterators ctors
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46092 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -679,8 +679,6 @@ public:
|
|||||||
private:
|
private:
|
||||||
iterator(wxString *str, underlying_iterator ptr)
|
iterator(wxString *str, underlying_iterator ptr)
|
||||||
: m_cur(ptr), m_node(str, &m_cur) {}
|
: m_cur(ptr), m_node(str, &m_cur) {}
|
||||||
iterator(wxString& str, underlying_iterator ptr)
|
|
||||||
: m_cur(ptr), m_node(&str, &m_cur) {}
|
|
||||||
|
|
||||||
wxString* str() const { return wx_const_cast(wxString*, m_node.m_str); }
|
wxString* str() const { return wx_const_cast(wxString*, m_node.m_str); }
|
||||||
|
|
||||||
@@ -717,8 +715,6 @@ public:
|
|||||||
// for internal wxString use only:
|
// for internal wxString use only:
|
||||||
const_iterator(const wxString *str, underlying_iterator ptr)
|
const_iterator(const wxString *str, underlying_iterator ptr)
|
||||||
: m_cur(ptr), m_node(str, &m_cur) {}
|
: m_cur(ptr), m_node(str, &m_cur) {}
|
||||||
const_iterator(const wxString& str, underlying_iterator ptr)
|
|
||||||
: m_cur(ptr), m_node(&str, &m_cur) {}
|
|
||||||
|
|
||||||
const wxString* str() const { return m_node.m_str; }
|
const wxString* str() const { return m_node.m_str; }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user