| 922 | } |
| 923 | |
| 924 | static void |
| 925 | ghb_application_open (GApplication *app, GFile **files, gint n_files, |
| 926 | const gchar *hint) |
| 927 | { |
| 928 | if (n_files < 1) |
| 929 | return; |
| 930 | |
| 931 | if (dvd_device == NULL) |
| 932 | { |
| 933 | dvd_device = g_file_get_path(files[0]); |
| 934 | } |
| 935 | ghb_application_activate(app); |
| 936 | } |
| 937 | |
| 938 | static int |
| 939 | ghb_application_handle_local_options (GApplication *app, GVariantDict *options) |
nothing calls this directly
no test coverage detected