| 311 | } |
| 312 | |
| 313 | void |
| 314 | ghb_queue_row_set_destination (GhbQueueRow *self, const char *dest) |
| 315 | { |
| 316 | g_return_if_fail(GHB_IS_QUEUE_ROW(self)); |
| 317 | |
| 318 | if (dest == NULL) dest = ""; |
| 319 | |
| 320 | g_autofree char *basename = g_path_get_basename(dest); |
| 321 | self->destination = g_strdup(dest); |
| 322 | gtk_label_set_text(self->dest_label, basename); |
| 323 | } |
| 324 | |
| 325 | static gboolean |
| 326 | ghb_queue_row_key_cb (GtkEventControllerKey *keycon, guint keyval, |
no outgoing calls
no test coverage detected