@eht16 commented on this pull request.


In plugins/saveactions.c:

> @@ -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.Message ID: <geany/geany/pull/3911/review/2442610694@github.com>