]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ctrlsub.cpp
Added distrib file for deprecated classes
[wxWidgets.git] / src / common / ctrlsub.cpp
index 1c7e18ea27ac807f9643e750732326cd60344ddb..67e8a80333a1e226e832d152f58913b1b1884557 100644 (file)
@@ -57,6 +57,19 @@ wxString wxItemContainer::GetStringSelection() const
     return s;
 }
 
+// ----------------------------------------------------------------------------
+// appending items
+// ----------------------------------------------------------------------------
+
+void wxItemContainer::Append(const wxArrayString& strings)
+{
+    size_t count = strings.GetCount();
+    for ( size_t n = 0; n < count; n++ )
+    {
+        Append(strings[n]);
+    }
+}
+
 // ----------------------------------------------------------------------------
 // client data
 // ----------------------------------------------------------------------------
@@ -109,4 +122,9 @@ void *wxItemContainer::GetClientData(int n) const
     return DoGetItemClientData(n);
 }
 
+wxControlWithItems::~wxControlWithItems()
+{
+    // this destructor is required for Darwin
+}
+
 #endif // wxUSE_CONTROLS