| 1507 | } |
| 1508 | |
| 1509 | gboolean |
| 1510 | ghb_idle_scan(signal_user_data_t *ud) |
| 1511 | { |
| 1512 | gchar *path; |
| 1513 | // ghb_do_scan replaces "source" key in dict, so we must |
| 1514 | // make a copy of the string. |
| 1515 | path = g_strdup(ghb_get_scan_source()); |
| 1516 | ghb_do_scan(ud, path, 0, TRUE); |
| 1517 | g_free(path); |
| 1518 | return FALSE; |
| 1519 | } |
| 1520 | |
| 1521 | extern GhbValue *ghb_queue_edit_settings; |
| 1522 | static gchar *last_scan_file = NULL; |
nothing calls this directly
no test coverage detected