Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused introspection comment on the variable #17370

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/iop/retouch.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ typedef struct dt_iop_retouch_params_t
dt_iop_retouch_fill_modes_t fill_mode; // $DEFAULT: DT_IOP_RETOUCH_FILL_ERASE $DESCRIPTION: "fill mode" mode for fill algorithm, erase or fill with color
float fill_color[3]; // $DEFAULT: 0.0 color for fill algorithm
float fill_brightness; // $MIN: -1.0 $MAX: 1.0 $DESCRIPTION: "brightness" value to be added to the color
int max_heal_iter; // $DEFAULT: 2000 $DESCRIPTION: "max_iter" number of iterations for heal algorithm
int max_heal_iter; // number of iterations for heal algorithm
} dt_iop_retouch_params_t;

typedef struct dt_iop_retouch_gui_data_t
Expand Down Expand Up @@ -260,7 +260,7 @@ int legacy_params(dt_iop_module_t *self,
dt_iop_retouch_fill_modes_t fill_mode; // $DEFAULT: DT_IOP_RETOUCH_FILL_ERASE $DESCRIPTION: "fill mode" mode for fill algorithm, erase or fill with color
float fill_color[3]; // $DEFAULT: 0.0 color for fill algorithm
float fill_brightness; // $MIN: -1.0 $MAX: 1.0 $DESCRIPTION: "brightness" value to be added to the color
int max_heal_iter; // $DEFAULT: 2000 $DESCRIPTION: "max_iter" number of iterations for heal algorithm
int max_heal_iter; // number of iterations for heal algorithm
} dt_iop_retouch_params_v3_t;

if(old_version == 1)
Expand Down
Loading