app: fix indentation in gimppivotselector.h

This commit is contained in:
Ell 2020-01-07 10:01:46 +02:00
parent 9d015b7b1a
commit 49221167c3
1 changed files with 16 additions and 16 deletions

View File

@ -51,28 +51,28 @@ struct _GimpPivotSelectorClass
GType gimp_pivot_selector_get_type (void) G_GNUC_CONST;
GtkWidget * gimp_pivot_selector_new (gdouble left,
gdouble top,
gdouble right,
gdouble bottom);
GtkWidget * gimp_pivot_selector_new (gdouble left,
gdouble top,
gdouble right,
gdouble bottom);
void gimp_pivot_selector_set_position (GimpPivotSelector *selector,
gdouble x,
gdouble y);
gdouble x,
gdouble y);
void gimp_pivot_selector_get_position (GimpPivotSelector *selector,
gdouble *x,
gdouble *y);
gdouble *x,
gdouble *y);
void gimp_pivot_selector_set_bounds (GimpPivotSelector *selector,
gdouble left,
gdouble top,
gdouble right,
gdouble bottom);
gdouble left,
gdouble top,
gdouble right,
gdouble bottom);
void gimp_pivot_selector_get_bounds (GimpPivotSelector *selector,
gdouble *left,
gdouble *top,
gdouble *right,
gdouble *bottom);
gdouble *left,
gdouble *top,
gdouble *right,
gdouble *bottom);
#endif /* __GIMP_PIVOT_SELECTOR_H__ */