removed Insert() methods which already exist in the base wxControlWithItems class
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47369 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -42,15 +42,6 @@ public:
|
|||||||
wxListBoxBase() { }
|
wxListBoxBase() { }
|
||||||
virtual ~wxListBoxBase();
|
virtual ~wxListBoxBase();
|
||||||
|
|
||||||
// all generic methods are in wxControlWithItems, except for the following
|
|
||||||
// ones which are not yet implemented by wxChoice/wxComboBox
|
|
||||||
void Insert(const wxString& item, unsigned int pos)
|
|
||||||
{ /* return*/ wxControlWithItems::Insert(item,pos); }
|
|
||||||
void Insert(const wxString& item, unsigned int pos, void *clientData)
|
|
||||||
{ /* return*/ wxControlWithItems::Insert(item,pos,clientData); }
|
|
||||||
void Insert(const wxString& item, unsigned int pos, wxClientData *clientData)
|
|
||||||
{ /* return*/ wxControlWithItems::Insert(item,pos,clientData); }
|
|
||||||
|
|
||||||
void InsertItems(unsigned int nItems, const wxString *items, unsigned int pos);
|
void InsertItems(unsigned int nItems, const wxString *items, unsigned int pos);
|
||||||
void InsertItems(const wxArrayString& items, unsigned int pos)
|
void InsertItems(const wxArrayString& items, unsigned int pos)
|
||||||
{ DoInsertItems(items, pos); }
|
{ DoInsertItems(items, pos); }
|
||||||
|
Reference in New Issue
Block a user