forked from AuroraMiddleware/gtk
text: Fix _set_attributes docs
The list is nullable.
This commit is contained in:
parent
aaaa3e141b
commit
1882034323
@ -6601,16 +6601,17 @@ gtk_text_get_input_hints (GtkText *self)
|
|||||||
/**
|
/**
|
||||||
* gtk_text_set_attributes:
|
* gtk_text_set_attributes:
|
||||||
* @self: a #GtkText
|
* @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
|
* Sets a #PangoAttrList; the attributes in the list are applied to the
|
||||||
* self text.
|
* text.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_text_set_attributes (GtkText *self,
|
gtk_text_set_attributes (GtkText *self,
|
||||||
PangoAttrList *attrs)
|
PangoAttrList *attrs)
|
||||||
{
|
{
|
||||||
GtkTextPrivate *priv = gtk_text_get_instance_private (self);
|
GtkTextPrivate *priv = gtk_text_get_instance_private (self);
|
||||||
|
|
||||||
g_return_if_fail (GTK_IS_TEXT (self));
|
g_return_if_fail (GTK_IS_TEXT (self));
|
||||||
|
|
||||||
if (attrs)
|
if (attrs)
|
||||||
|
Loading…
Reference in New Issue
Block a user