| 79 | } |
| 80 | |
| 81 | static void onCopyPressedCallback(lv_event_t* event) { |
| 82 | auto* view = static_cast<View*>(lv_event_get_user_data(event)); |
| 83 | view->onCopyPressed(); |
| 84 | } |
| 85 | |
| 86 | static void onCutPressedCallback(lv_event_t* event) { |
| 87 | auto* view = static_cast<View*>(lv_event_get_user_data(event)); |
nothing calls this directly
no test coverage detected