summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorStephan Sundermann <stephansundermann@gmail.com>2013-11-02 17:01:23 +0100
committerStephan Sundermann <stephansundermann@gmail.com>2013-12-21 16:52:28 +0100
commite1a6ddb198819be554d2c128b1ffe7127a7980cc (patch)
tree8e28d2193ad3bf08bc1904a1b9bb6fdb11739683 /sources
parent6d7e41016e366cff31dbefb0067070aea5ea8dd3 (diff)
Pad: Fixed Caps property
Diffstat (limited to 'sources')
-rw-r--r--sources/custom/Pad.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/custom/Pad.cs b/sources/custom/Pad.cs
index 3cab1fa..3662705 100644
--- a/sources/custom/Pad.cs
+++ b/sources/custom/Pad.cs
@@ -23,7 +23,7 @@ namespace Gst {
public Gst.Caps Caps {
get {
GLib.Value val = GetProperty ("caps");
- Gst.Caps ret = new Gst.Caps ((IntPtr)val);
+ Gst.Caps ret = (Gst.Caps) val.Val;
val.Dispose ();
return ret;
}