| 337 | } |
| 338 | |
| 339 | static void |
| 340 | ghb_queue_row_delete_action (GSimpleAction *action, GVariant *param, |
| 341 | gpointer data) |
| 342 | { |
| 343 | GhbQueueRow *self = data; |
| 344 | |
| 345 | g_return_if_fail(GHB_IS_QUEUE_ROW(self)); |
| 346 | |
| 347 | ghb_queue_remove_row(self); |
| 348 | } |
nothing calls this directly
no test coverage detected