| 186 | } |
| 187 | |
| 188 | void |
| 189 | ghb_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 | |
| 200 | void |
| 201 | ghb_button_set_orientation (GhbButton *self, GtkOrientation orientation) |
no outgoing calls
no test coverage detected