| 298 | } |
| 299 | |
| 300 | void |
| 301 | ghb_file_button_set_filename (GhbFileButton *self, const char *filename) |
| 302 | { |
| 303 | g_return_if_fail(GHB_IS_FILE_BUTTON(self)); |
| 304 | |
| 305 | g_autoptr(GFile) file = g_file_new_for_path(filename); |
| 306 | ghb_file_button_set_file(self, file); |
| 307 | } |
| 308 | |
| 309 | void |
| 310 | ghb_file_button_set_title (GhbFileButton *self, const char *filename) |
no test coverage detected