// implementation
// ============================================================================
+wxItemContainer::~wxItemContainer()
+{
+ // this destructor is required for Darwin
+}
+
// ----------------------------------------------------------------------------
// selection
// ----------------------------------------------------------------------------
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
// ----------------------------------------------------------------------------
return DoGetItemClientData(n);
}
+wxControlWithItems::~wxControlWithItems()
+{
+ // this destructor is required for Darwin
+}
+
#endif // wxUSE_CONTROLS