diff options
author | Evan Nemerson <evan@nemerson.com> | 2014-05-26 09:29:56 -0700 |
---|---|---|
committer | Evan Nemerson <evan@nemerson.com> | 2014-05-27 21:10:32 -0700 |
commit | e596e58c51a2f25c8ff4d35dea2bb77751b2f105 (patch) | |
tree | 0729c0ff46a9e9593693c0c6f6513e9a5f7ac1a5 /gtk/deprecated | |
parent | e568903360be156973c5767cda2f3248e722d507 (diff) | |
download | gtk+-e596e58c51a2f25c8ff4d35dea2bb77751b2f105.tar.gz |
gtk: port missing array annotations from Vala bindings
https://bugzilla.gnome.org/show_bug.cgi?id=730745
Diffstat (limited to 'gtk/deprecated')
-rw-r--r-- | gtk/deprecated/gtkcolorsel.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/gtk/deprecated/gtkcolorsel.h b/gtk/deprecated/gtkcolorsel.h index 681fe06ad0..21f86b6b1f 100644 --- a/gtk/deprecated/gtkcolorsel.h +++ b/gtk/deprecated/gtkcolorsel.h @@ -47,16 +47,24 @@ typedef struct _GtkColorSelection GtkColorSelection; typedef struct _GtkColorSelectionPrivate GtkColorSelectionPrivate; typedef struct _GtkColorSelectionClass GtkColorSelectionClass; +/** + * GtkColorSelectionChangePaletteFunc: + * @colors: (array length=n_colors): Array of colors + * @n_colors: Number of colors in the array + * + * Deprecated: 3.4 + */ typedef void (* GtkColorSelectionChangePaletteFunc) (const GdkColor *colors, gint n_colors); /** * GtkColorSelectionChangePaletteWithScreenFunc: * @screen: - * @colors: - * @n_colors: + * @colors: (array length=n_colors): Array of colors + * @n_colors: Number of colors in the array * * Since: 2.2 + * Deprecated: 3.4 */ typedef void (* GtkColorSelectionChangePaletteWithScreenFunc) (GdkScreen *screen, const GdkColor *colors, |