-void wxCheckListBox::InsertItems(int nItems, const wxString items[], int pos)
-{
- wxCHECK_RET( pos >= 0 && pos <= m_noItems,
- wxT("invalid index in wxCheckListBox::InsertItems") );
-
- wxListBox::InsertItems(nItems, items, pos);
-
- int i;
- for ( i = 0; i < nItems; i++ ) {
- wxOwnerDrawn *pNewItem = CreateItem((size_t)(pos + i));
- pNewItem->SetName(items[i]);
- pNewItem->SetFont(GetFont());
-
- m_aItems.Insert(pNewItem, (size_t)(pos + i));
-
- ListBox_SetItemData((HWND)GetHWND(), i + pos, pNewItem);
- }
-}
-
-