| 233 | } |
| 234 | |
| 235 | gint64 |
| 236 | ghb_widget_int64(GtkWidget *widget) |
| 237 | { |
| 238 | GhbValue *value; |
| 239 | gint64 ival; |
| 240 | |
| 241 | value = ghb_widget_value(widget); |
| 242 | ival = ghb_value_get_int(value); |
| 243 | ghb_value_free(&value); |
| 244 | return ival; |
| 245 | } |
| 246 | |
| 247 | gint |
| 248 | ghb_widget_int(GtkWidget *widget) |
nothing calls this directly
no test coverage detected