| 962 | } |
| 963 | void SetOldEditBufferLen(UIEdit *item, int len) { item->SetBufferLen(len); } |
| 964 | void NewUIWindowLoadBackgroundImage(NewUIWindow *item, const char *image_name) { |
| 965 | item->LoadBackgroundImage(image_name); |
| 966 | } |
| 967 | void DeleteUIItem(void *delitem) { delete delitem; } // !!! FIXME: this needs to change, but this deletes a lot of different things... |
| 968 | void GadgetDestroy(UIGadget *item) { item->Destroy(); } |
| 969 | void *SliderCreate(UIWindow *parent, int id, int x, int y, int flags) { |
no test coverage detected