| 54 | } |
| 55 | |
| 56 | static void onRenamePressedCallback(lv_event_t* event) { |
| 57 | auto* view = static_cast<View*>(lv_event_get_user_data(event)); |
| 58 | view->onRenamePressed(); |
| 59 | } |
| 60 | |
| 61 | static void onDeletePressedCallback(lv_event_t* event) { |
| 62 | auto* view = static_cast<View*>(lv_event_get_user_data(event)); |
nothing calls this directly
no test coverage detected