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

Function ghb_file_button_set_title

gtk/src/ghb-file-button.c:309–317  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

307}
308
309void
310ghb_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
319void
320ghb_file_button_set_accept_label (GhbFileButton *self, const char *filename)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected