Pad: Fixed Caps property

This commit is contained in:
Stephan Sundermann 2013-11-02 17:01:23 +01:00
parent 6d7e41016e
commit e1a6ddb198

View file

@ -23,7 +23,7 @@ namespace Gst {
public Gst.Caps Caps { public Gst.Caps Caps {
get { get {
GLib.Value val = GetProperty ("caps"); GLib.Value val = GetProperty ("caps");
Gst.Caps ret = new Gst.Caps ((IntPtr)val); Gst.Caps ret = (Gst.Caps) val.Val;
val.Dispose (); val.Dispose ();
return ret; return ret;
} }