]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
glib-2.0: Fix bindings for g_hash_table_size
authorFlorian Brosch <flo.brosch@gmail.com>
Thu, 10 Jul 2014 03:17:17 +0000 (05:17 +0200)
committerEvan Nemerson <evan@nemerson.com>
Thu, 10 Jul 2014 16:25:12 +0000 (09:25 -0700)
vapi/glib-2.0.vapi

index fdf4e8c81ab987f45455ac9afc632a1bb73903c2..28770720cdce40cf59e6918990cf2b1cefc7300e 100644 (file)
@@ -4198,7 +4198,7 @@ namespace GLib {
                        return ht;
                }
                public uint length {
-                       [CCode (cname = "g_hash_table_get_size")]
+                       [CCode (cname = "g_hash_table_size")]
                        get;
                }
        }
@@ -4227,7 +4227,7 @@ namespace GLib {
                        ((GLib.HashTable<unowned T,T>) this).foreach ((k, v) => func (v));
                }
                public uint length {
-                       [CCode (cname = "g_hash_table_get_size")]
+                       [CCode (cname = "g_hash_table_size")]
                        get;
                }
        }