From: Evan Nemerson Date: Sat, 19 Dec 2009 20:56:13 +0000 (-0800) Subject: gstreamer-0.10: Gst.Value.get/set_date expect a GLib.Date. X-Git-Tag: 0.7.10~152 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0c83b17741b4e4d5bf70db2995ad0e438f08fe81;p=thirdparty%2Fvala.git gstreamer-0.10: Gst.Value.get/set_date expect a GLib.Date. Fixes bug 601766. --- diff --git a/vapi/gstreamer-0.10.vapi b/vapi/gstreamer-0.10.vapi index 427dd1c7a..0ea2d4799 100644 --- a/vapi/gstreamer-0.10.vapi +++ b/vapi/gstreamer-0.10.vapi @@ -1544,7 +1544,7 @@ namespace Gst { public static bool fraction_subtract (GLib.Value dest, GLib.Value minuend, GLib.Value subtrahend); public unowned Gst.Buffer get_buffer (); public Gst.Caps get_caps (); - public Gst.Date get_date (); + public GLib.Date get_date (); public double get_double_range_max (); public double get_double_range_min (); public uint get_fourcc (); @@ -1573,7 +1573,7 @@ namespace Gst { public string serialize (); public void set_buffer (Gst.Buffer b); public void set_caps (Gst.Caps caps); - public void set_date (Gst.Date date); + public void set_date (GLib.Date date); public void set_double_range (double start, double end); public void set_fourcc (uint fourcc); public void set_fraction (int numerator, int denominator); diff --git a/vapi/packages/gstreamer-0.10/gstreamer-0.10-custom.vala b/vapi/packages/gstreamer-0.10/gstreamer-0.10-custom.vala index f752485e1..c1ca97fe6 100644 --- a/vapi/packages/gstreamer-0.10/gstreamer-0.10-custom.vala +++ b/vapi/packages/gstreamer-0.10/gstreamer-0.10-custom.vala @@ -202,8 +202,8 @@ namespace Gst { public weak Gst.Value? get_fraction_range_max (); public void set_fraction_range_full (int numerator_start, int denominator_start, int numerator_end, int denominator_end); - public void set_date (Date date); - public Date get_date (); + public void set_date (GLib.Date date); + public GLib.Date get_date (); public void set_caps (Caps caps); public Caps get_caps ();