text: Fix _set_attributes docs

The list is nullable.
This commit is contained in:
Timm Bäder 2019-10-20 08:39:55 +02:00
parent aaaa3e141b
commit 1882034323

View File

@ -6601,16 +6601,17 @@ gtk_text_get_input_hints (GtkText *self)
/**
* gtk_text_set_attributes:
* @self: a #GtkText
* @attrs: a #PangoAttrList
* @attrs: (nullable): a #PangoAttrList or %NULL to unset
*
* Sets a #PangoAttrList; the attributes in the list are applied to the
* self text.
* text.
*/
void
gtk_text_set_attributes (GtkText *self,
PangoAttrList *attrs)
{
GtkTextPrivate *priv = gtk_text_get_instance_private (self);
g_return_if_fail (GTK_IS_TEXT (self));
if (attrs)