app: incorrect order of parameters in gimp_channel_select_round_rect

in gimpchannel-select.h
Looking at the version in gimpchannel-select.c, the calls made to it,
and also what is usual, the corner_radius_x should be before
corner_radius_y.

Found looking at the cppcheck logs.
This commit is contained in:
Jacob Boerema 2023-08-02 11:24:43 -04:00
parent eee763b1c1
commit 72ee6ff469
1 changed files with 1 additions and 1 deletions

View File

@ -47,8 +47,8 @@ void gimp_channel_select_round_rect (GimpChannel *channel,
gint y,
gint w,
gint h,
gdouble corner_radius_y,
gdouble corner_radius_x,
gdouble corner_radius_y,
GimpChannelOps op,
gboolean antialias,
gboolean feather,