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

Function ghb_button_set_indicator_label

gtk/src/ghb-button.c:188–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186}
187
188void
189ghb_button_set_indicator_label (GhbButton *self, const char *label)
190{
191 g_return_if_fail(GHB_IS_BUTTON(self));
192
193 gtk_widget_set_visible(GTK_WIDGET(self->indicator),
194 (label != NULL && label[0] != '\0'));
195
196 if (label == NULL) label = "";
197 gtk_label_set_label(self->indicator, label);
198}
199
200void
201ghb_button_set_orientation (GhbButton *self, GtkOrientation orientation)

Callers 2

update_queue_labelsFunction · 0.85
ghb_button_set_propertyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected