| 2582 | } |
| 2583 | |
| 2584 | void UpdateRingModeFromStickMode(JSMVariable<RingMode> *stickRingMode, StickMode newValue) |
| 2585 | { |
| 2586 | if (newValue == StickMode::INNER_RING) |
| 2587 | { |
| 2588 | *stickRingMode = RingMode::INNER; |
| 2589 | } |
| 2590 | else if (newValue == StickMode::OUTER_RING) |
| 2591 | { |
| 2592 | *stickRingMode = RingMode::OUTER; |
| 2593 | } |
| 2594 | } |
| 2595 | |
| 2596 | void RefreshAutoloadHelp(JSMAssignment<Switch> *autoloadCmd) |
| 2597 | { |
nothing calls this directly
no outgoing calls
no test coverage detected