Initializes one indev with another. Useful for method of the owning class that needs to copy from the input indev to the top of the stack and vice-versa.
| 94 | // Initializes one indev with another. Useful for method of the owning class |
| 95 | // that needs to copy from the input indev to the top of the stack and vice-versa. |
| 96 | void InputDevices::indev::copy_from(const indev* src) |
| 97 | { |
| 98 | fb_assert(src); |
| 99 | indev_fpointer = src->indev_fpointer; |
| 100 | indev_line = src->indev_line; |
| 101 | indev_aux = src->indev_aux; |
| 102 | indev_fn = src->indev_fn; |
| 103 | indev_fn_display = src->indev_fn_display; |
| 104 | // indev_next not copied. |
| 105 | } |
| 106 | |
| 107 | // Drop a file associated with an indev. |
| 108 | void InputDevices::indev::drop() |
no outgoing calls
no test coverage detected