MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / chapters_import_response_cb

Function chapters_import_response_cb

gtk/src/chapters.c:427–441  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

425}
426
427static void
428chapters_import_response_cb (GtkFileChooser *dialog,
429 GtkResponseType response,
430 signal_user_data_t *ud)
431{
432 char *filename;
433
434 if (response == GTK_RESPONSE_ACCEPT)
435 {
436 filename = ghb_file_chooser_get_filename(dialog);
437 chapter_list_import_xml(filename, ud);
438 g_free(filename);
439 }
440 ghb_file_chooser_destroy(dialog);
441}
442
443G_MODULE_EXPORT void
444chapters_export_action_cb (GSimpleAction *action, GVariant *param,

Callers

nothing calls this directly

Calls 3

chapter_list_import_xmlFunction · 0.85
ghb_file_chooser_destroyFunction · 0.85

Tested by

no test coverage detected