| 307 | } |
| 308 | |
| 309 | void |
| 310 | ghb_file_button_set_title (GhbFileButton *self, const char *filename) |
| 311 | { |
| 312 | g_return_if_fail(GHB_IS_FILE_BUTTON(self)); |
| 313 | |
| 314 | g_free(self->title); |
| 315 | self->title = g_strdup(filename); |
| 316 | g_object_notify_by_pspec(G_OBJECT(self), props[PROP_TITLE]); |
| 317 | } |
| 318 | |
| 319 | void |
| 320 | ghb_file_button_set_accept_label (GhbFileButton *self, const char *filename) |
no outgoing calls
no test coverage detected