summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2013-09-10 17:34:04 -0400
committerMatthias Clasen <mclasen@redhat.com>2013-09-10 17:34:04 -0400
commit05fe0e7443026b8504da32fd8bc92433cacdb431 (patch)
treeba1a624e02ba84fc5cb0037e40bbd682ccbecb72
parent114d5bfe9d54d1efabc233312d2c23267cf16f59 (diff)
downloadpango-05fe0e7443026b8504da32fd8bc92433cacdb431.tar.gz
Correct an annotation
The annotation for pango_layout_set_attributes should be 'transfer none', not 'transfer full'. Pointed out in https://bugzilla.gnome.org/show_bug.cgi?id=707874
-rw-r--r--pango/pango-layout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pango-layout.c b/pango/pango-layout.c
index 2b0147fb..82a3283c 100644
--- a/pango/pango-layout.c
+++ b/pango/pango-layout.c
@@ -599,7 +599,7 @@ pango_layout_get_spacing (PangoLayout *layout)
/**
* pango_layout_set_attributes:
* @layout: a #PangoLayout
- * @attrs: (allow-none) (transfer full): a #PangoAttrList, can be %NULL
+ * @attrs: (allow-none) (transfer none): a #PangoAttrList, can be %NULL
*
* Sets the text attributes for a layout object.
* References @attrs, so the caller can unref its reference.