From: Robert Ancell Date: Tue, 13 May 2014 22:01:05 +0000 (+1200) Subject: xcb: Fix depth iterator methods X-Git-Tag: 0.25.1~106 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e22104789e9672fd20d1023b4e0ae16cd5b208a;p=thirdparty%2Fvala.git xcb: Fix depth iterator methods https://bugzilla.gnome.org/show_bug.cgi?id=730089 --- diff --git a/vapi/xcb.vapi b/vapi/xcb.vapi index d15e11b2a..0fcfb6a85 100644 --- a/vapi/xcb.vapi +++ b/vapi/xcb.vapi @@ -644,6 +644,7 @@ namespace Xcb { public uint16 width_in_millimeters; public uint16 height_in_millimeters; public VisualID root_visual; + public int allowed_depths_length (); public DepthIterator allowed_depths_iterator (); } @@ -680,7 +681,7 @@ namespace Xcb { public unowned Depth data; public int rem; [CCode (cname = "xcb_depth_next")] - public void next (); + public static void next (ref DepthIterator iter); } [SimpleType]