]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/lboxcmn.cpp
Resolve '&&' ambiguity (VC++ 6)
[wxWidgets.git] / src / common / lboxcmn.cpp
index 218ba8a71adf0459c32c3aad7dcc955f01d43aac..2d764f33bf6ae2fade8d1119e7c94c29dedcbdeb 100644 (file)
@@ -42,33 +42,6 @@ wxListBoxBase::~wxListBoxBase()
     // this destructor is required for Darwin
 }
 
-// ----------------------------------------------------------------------------
-// adding items
-// ----------------------------------------------------------------------------
-
-void wxListBoxBase::InsertItems(unsigned int nItems, const wxString *items, unsigned int pos)
-{
-    wxArrayString aItems;
-    for ( unsigned int n = 0; n < nItems; n++ )
-    {
-        aItems.Add(items[n]);
-    }
-
-    DoInsertItems(aItems, pos);
-}
-
-
-void wxListBoxBase::Set(int nItems, const wxString* items, void **clientData)
-{
-    wxArrayString aItems;
-    for ( int n = 0; n < nItems; n++ )
-    {
-        aItems.Add(items[n]);
-    }
-
-    DoSetItems(aItems, clientData);
-}
-
 // ----------------------------------------------------------------------------
 // selection
 // ----------------------------------------------------------------------------