summaryrefslogtreecommitdiff
path: root/gst/geometrictransform/gstsquare.c
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2013-12-02 10:25:57 +0100
committerSebastian Dröge <sebastian@centricular.com>2013-12-02 10:26:32 +0100
commit426c26f7080555ee808bff83bd7cc8ede2aaf9ec (patch)
treed1e38e0ee2ab81f27295ea659e19b9fbee39f1e1 /gst/geometrictransform/gstsquare.c
parent8de96a2fbbb1e56dae298887a3a71e6c4572f148 (diff)
downloadgstreamer-plugins-bad-426c26f7080555ee808bff83bd7cc8ede2aaf9ec.tar.gz
geometrictransform: Remove empty GObject::finalize() implementations
Also don't use GST_DEBUG_FUNCPTR for GObject vfuncs
Diffstat (limited to 'gst/geometrictransform/gstsquare.c')
-rw-r--r--gst/geometrictransform/gstsquare.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/geometrictransform/gstsquare.c b/gst/geometrictransform/gstsquare.c
index c0eebdac1..960b93a04 100644
--- a/gst/geometrictransform/gstsquare.c
+++ b/gst/geometrictransform/gstsquare.c
@@ -193,8 +193,8 @@ gst_square_class_init (GstSquareClass * klass)
"Distort center part of the image into a square",
"Filippo Argiolas <filippo.argiolas@gmail.com>");
- gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_square_set_property);
- gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_square_get_property);
+ gobject_class->set_property = gst_square_set_property;
+ gobject_class->get_property = gst_square_get_property;
g_object_class_install_property (gobject_class, PROP_WIDTH,
g_param_spec_double ("width", "Width",