| 1885 | |
| 1886 | #if 0 |
| 1887 | G_MODULE_EXPORT void |
| 1888 | source_button_clicked_cb(GtkButton *button, signal_user_data_t *ud) |
| 1889 | { |
| 1890 | ghb_status_t status; |
| 1891 | ghb_get_status(&status); |
| 1892 | if (status.scan.state & GHB_STATE_SCANNING) |
| 1893 | { |
| 1894 | ghb_backend_scan_stop(); |
| 1895 | } |
| 1896 | else |
| 1897 | { |
| 1898 | do_source_dialog(FALSE, ud); |
| 1899 | } |
| 1900 | } |
| 1901 | #else |
| 1902 | G_MODULE_EXPORT void |
| 1903 | source_action_cb(GSimpleAction *action, GVariant *param, |
nothing calls this directly
no test coverage detected