]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
pango: fix ownership of AttrList.get_iterator return value
authorEvan Nemerson <evan@coeus-group.com>
Tue, 2 Nov 2010 18:46:05 +0000 (11:46 -0700)
committerJürg Billeter <j@bitron.ch>
Thu, 23 Dec 2010 14:26:49 +0000 (15:26 +0100)
vapi/packages/pango/pango.metadata
vapi/pango.vapi

index 7e9b43bed599c927417370f97b6bdc06ee3be971..32409635caf3f4eb9b7072fadbeb780f72b1407b 100644 (file)
@@ -10,6 +10,7 @@ PangoAttrFontDesc.attr hidden="1"
 PangoAttrInt base_class="PangoAttribute" free_function="pango_attribute_destroy"
 PangoAttrInt.attr hidden="1"
 pango_attr_list_copy transfer_ownership="1"
+pango_attr_list_get_iterator transfer_ownership="1"
 pango_attr_list_insert.attr transfer_ownership="1"
 PangoAttrLanguage base_class="PangoAttribute" free_function="pango_attribute_destroy"
 PangoAttrLanguage.attr hidden="1"
index 48ec293e4584491a4b73255a7d0cc6ccfd39c696..0cca84e097135f663f0e615ec4445adb1bd3df9c 100644 (file)
@@ -74,7 +74,7 @@ namespace Pango {
                public void change (Pango.Attribute attr);
                public Pango.AttrList copy ();
                public unowned Pango.AttrList filter (Pango.AttrFilterFunc func, void* data);
-               public unowned Pango.AttrIterator get_iterator ();
+               public Pango.AttrIterator get_iterator ();
                public void insert (owned Pango.Attribute attr);
                public void insert_before (Pango.Attribute attr);
                public void splice (Pango.AttrList other, int pos, int len);