]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
gstreamer-0.10: Gst.Value.get/set_date expect a GLib.Date.
authorEvan Nemerson <evan@coeus-group.com>
Sat, 19 Dec 2009 20:56:13 +0000 (12:56 -0800)
committerEvan Nemerson <evan@coeus-group.com>
Sat, 19 Dec 2009 20:56:13 +0000 (12:56 -0800)
Fixes bug 601766.

vapi/gstreamer-0.10.vapi
vapi/packages/gstreamer-0.10/gstreamer-0.10-custom.vala

index 427dd1c7a1a4442d31b08a398ed1d04c0d7c28b9..0ea2d479989dc332417563b0536b85e0397524cd 100644 (file)
@@ -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);
index f752485e1d5aa98d084ac6941b3310a69dc102f8..c1ca97fe6539e6fbb51b2eee1f1085d20dcba90f 100644 (file)
@@ -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 ();