diff options
author | Jürg Billeter <j@bitron.ch> | 2010-08-21 18:47:40 +0200 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2010-08-21 18:47:40 +0200 |
commit | 20209bb268fb091fa82b75d931887b54f2232763 (patch) | |
tree | f4cce3d8bdcab2358de0f1c07239e4a2b17f3170 /vapi/gdk-pixbuf-2.0.vapi | |
parent | 18a65bd81ff77dd55ba24ece47e418dc0ba73362 (diff) | |
download | vala-20209bb268fb091fa82b75d931887b54f2232763.tar.gz |
vapigen: Fix chain up warning in subclasses of generated bindings
Diffstat (limited to 'vapi/gdk-pixbuf-2.0.vapi')
-rw-r--r-- | vapi/gdk-pixbuf-2.0.vapi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vapi/gdk-pixbuf-2.0.vapi b/vapi/gdk-pixbuf-2.0.vapi index f56321fa6..11a32bda3 100644 --- a/vapi/gdk-pixbuf-2.0.vapi +++ b/vapi/gdk-pixbuf-2.0.vapi @@ -70,6 +70,8 @@ namespace Gdk { [CCode (cheader_filename = "gdk-pixbuf/gdk-pixdata.h")] public class PixbufAnimation : GLib.Object { [CCode (has_construct_function = false)] + protected PixbufAnimation (); + [CCode (has_construct_function = false)] public PixbufAnimation.from_file (string filename) throws GLib.Error; public int get_height (); public unowned Gdk.PixbufAnimationIter get_iter (GLib.TimeVal start_time); @@ -79,6 +81,8 @@ namespace Gdk { } [CCode (cheader_filename = "gdk-pixbuf/gdk-pixdata.h")] public class PixbufAnimationIter : GLib.Object { + [CCode (has_construct_function = false)] + protected PixbufAnimationIter (); public bool advance (GLib.TimeVal current_time); public int get_delay_time (); public unowned Gdk.Pixbuf get_pixbuf (); @@ -131,6 +135,8 @@ namespace Gdk { } [CCode (cheader_filename = "gdk-pixbuf/gdk-pixdata.h")] public class PixbufSimpleAnimIter : Gdk.PixbufAnimationIter { + [CCode (has_construct_function = false)] + protected PixbufSimpleAnimIter (); } [CCode (type_id = "GDK_TYPE_PIXDATA", cheader_filename = "gdk-pixbuf/gdk-pixdata.h")] public struct Pixdata { |