================= Item_SetMouseOver ================= */
| 9294 | ================= |
| 9295 | */ |
| 9296 | void Item_SetMouseOver(itemDef_t *item, qboolean focus) |
| 9297 | { |
| 9298 | if (item) |
| 9299 | { |
| 9300 | if (focus) |
| 9301 | { |
| 9302 | item->window.flags |= WINDOW_MOUSEOVER; |
| 9303 | } |
| 9304 | else |
| 9305 | { |
| 9306 | item->window.flags &= ~WINDOW_MOUSEOVER; |
| 9307 | } |
| 9308 | } |
| 9309 | } |
| 9310 | |
| 9311 | /* |
| 9312 | ================= |
no outgoing calls
no test coverage detected