@eht16 commented on this pull request.
> @@ -635,7 +1237,46 @@ static void checkbox_toggled_cb(GtkToggleButton *tb, gpointer data) break; } } +} + + +static void radio_toggled_cb(GtkRadioButton *rb, gpointer data) +{ + gboolean enable = gtk_toggle_button_get_active(rb);
Here a cast is missng:
⬇️ Suggested change- gboolean enable = gtk_toggle_button_get_active(rb); + gboolean enable = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(rb));
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.