| 245 | } |
| 246 | |
| 247 | gint |
| 248 | ghb_widget_int(GtkWidget *widget) |
| 249 | { |
| 250 | GhbValue *value; |
| 251 | gint ival; |
| 252 | |
| 253 | value = ghb_widget_value(widget); |
| 254 | ival = (gint)ghb_value_get_int(value); |
| 255 | ghb_value_free(&value); |
| 256 | return ival; |
| 257 | } |
| 258 | |
| 259 | gint |
| 260 | ghb_widget_boolean(GtkWidget *widget) |
no test coverage detected