]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ctrlsub.cpp
added missing WXDLLEXPORT
[wxWidgets.git] / src / common / ctrlsub.cpp
index 1c7e18ea27ac807f9643e750732326cd60344ddb..aa0714d83f5c066ef3a2e5834913718efc6978f2 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
 // ----------------------------------------------------------------------------