From: Sebastian Dröge Date: Mon, 7 Feb 2022 14:23:01 +0000 (+0200) Subject: Mark `gtk_drop_target_get_formats()` return value as `transfer none` X-Git-Tag: archive/raspbian/4.6.5+ds-1+rpi1~1^2~19^2~4^2~27^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3ba582375d58291be148818b0a6580c32e15514b;p=gtk4.git Mark `gtk_drop_target_get_formats()` return value as `transfer none` It was wrongly inferred as `transfer full` by gobject-introspection. --- diff --git a/gtk/gtkdroptarget.c b/gtk/gtkdroptarget.c index 50ded064c3..477f167580 100644 --- a/gtk/gtkdroptarget.c +++ b/gtk/gtkdroptarget.c @@ -895,7 +895,7 @@ gtk_drop_target_new (GType type, * * If the result is %NULL, all formats are expected to be supported. * - * Returns: (nullable): the supported data formats + * Returns: (nullable) (transfer none): the supported data formats */ GdkContentFormats * gtk_drop_target_get_formats (GtkDropTarget *self)