[vala] gstreamer-0.10: Gst.Value.get/set_date expect a GLib.Date.



commit 0c83b17741b4e4d5bf70db2995ad0e438f08fe81
Author: Evan Nemerson <evan coeus-group com>
Date:   Sat Dec 19 12:56:13 2009 -0800

    gstreamer-0.10: Gst.Value.get/set_date expect a GLib.Date.
    
    Fixes bug 601766.

 vapi/gstreamer-0.10.vapi                           |    4 ++--
 .../gstreamer-0.10/gstreamer-0.10-custom.vala      |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/vapi/gstreamer-0.10.vapi b/vapi/gstreamer-0.10.vapi
index 427dd1c..0ea2d47 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 f752485..c1ca97f 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 ();



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]