@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:
```suggestion
gboolean enable = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(rb));
```
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3911#pullrequestreview-2442610694
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3911/review/[email protected]>