libgimpbase: remove obsolete members from struct GimpPixPipeParams

This commit is contained in:
Michael Natterer 2019-07-24 02:22:47 +02:00
parent fbee862c50
commit 997730a69d

View file

@ -42,36 +42,31 @@ typedef struct _GimpPixPipeParams GimpPixPipeParams;
/** /**
* GimpPixPipeParams: * GimpPixPipeParams:
* @step: Step * @step: Step
* @ncells: Number of cells * @ncells: Number of cells
* @dim: Dimension * @dim: Dimension
* @cols: Columns * @cols: Columns
* @rows: Rows * @rows: Rows
* @cellwidth: Cell width * @cellwidth: Cell width
* @cellheight: Cell height * @cellheight: Cell height
* @placement: Placement * @placement: Placement
* @free_placement_string: Unused, ignore * @rank: Rank
* @rank: Rank * @selection: Selection
* @selection: Selection
* @free_selection_string: Unused, ignore
* *
* PLease somebody help documenting this. * PLease somebody help documenting this.
**/ **/
struct _GimpPixPipeParams struct _GimpPixPipeParams
{ {
gint step; gint step;
gint ncells; gint ncells;
gint dim; gint dim;
gint cols; gint cols;
gint rows; gint rows;
gint cellwidth; gint cellwidth;
gint cellheight; gint cellheight;
gchar *placement; gchar *placement;
gboolean free_placement_string; gint rank[GIMP_PIXPIPE_MAXDIM];
gint rank[GIMP_PIXPIPE_MAXDIM]; gchar *selection[GIMP_PIXPIPE_MAXDIM];
gchar *selection[GIMP_PIXPIPE_MAXDIM];
/* this flag is now useless. All selection strings are allocated. */
gboolean free_selection_string;
}; };
/* Initialize with dummy values */ /* Initialize with dummy values */