| 916 | } |
| 917 | void NewUIWindowSetFocusOnEditGadget(UIEdit *item, UIWindow *parent) { item->Activate(); } |
| 918 | void *OldListCreate(UIWindow *parentitem, int id, int x, int y, int w, int h, int flags) { |
| 919 | UIListBox *newoldlist; |
| 920 | newoldlist = new UIListBox; |
| 921 | newoldlist->Create(parentitem, id, x, y, w, h, flags); |
| 922 | newoldlist->SetSelectedColor(UICOL_LISTBOX_HI); |
| 923 | newoldlist->SetHiliteColor(UICOL_LISTBOX_HI); |
| 924 | return newoldlist; |
| 925 | } |
| 926 | void OldListRemoveAll(UIListBox *item) { item->RemoveAll(); } |
| 927 | void OldListAddItem(UIListBox *item, UITextItem *uitext) { item->AddItem(uitext); } |
| 928 | void OldListRemoveItem(UIListBox *item, UITextItem *txtitem) { item->RemoveItem(txtitem); } |
nothing calls this directly
no test coverage detected