app: Explicity cast third argument of gimp_enum_radio_box_add to gint

To fix a Apple Clang warning.

gint is what the function on app/widgets/gimpwidgets-utils.h expects.
This commit is contained in:
Bruno Lopes 2026-03-29 20:15:04 -03:00
parent 6300b7377f
commit e6eeaba58e

View file

@ -190,8 +190,8 @@ gimp_fill_editor_constructed (GObject *object)
"pattern-view-size");
gimp_enum_radio_box_add (GTK_BOX (box), pattern_box,
(editor->use_custom_style ?
GIMP_CUSTOM_STYLE_PATTERN :
GIMP_FILL_STYLE_PATTERN),
(gint) GIMP_CUSTOM_STYLE_PATTERN :
(gint) GIMP_FILL_STYLE_PATTERN),
FALSE);
}