| 3233 | } |
| 3234 | |
| 3235 | G_MODULE_EXPORT void |
| 3236 | plot_changed_cb(GtkWidget *widget, signal_user_data_t *ud) |
| 3237 | { |
| 3238 | GtkWidget * textview; |
| 3239 | const char * val; |
| 3240 | |
| 3241 | textview = GTK_WIDGET(ghb_builder_widget("MetaLongDescription")); |
| 3242 | ghb_widget_to_setting(ud->settings, textview); |
| 3243 | val = ghb_dict_get_string(ud->settings, "MetaLongDescription"); |
| 3244 | update_meta(ud->settings, "LongDescription", val); |
| 3245 | } |
| 3246 | |
| 3247 | G_MODULE_EXPORT void |
| 3248 | chapter_markers_changed_cb (GtkWidget *widget, gpointer data) |
nothing calls this directly
no test coverage detected