Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2020-07-26 18:33:14 +0300
committerSebastian Dröge <sebastian@centricular.com>2020-07-26 18:46:32 +0300
commit0eb777cf5acf7c48ade2a83de5f441e96cf61b90 (patch)
tree8fbe97f7e3876b598fca03c3e5b9a59cb7a9763f /audio/csound/src
parent1730de6cea10cb73ff1ab882a8235d540bfa5061 (diff)
Update for removal of ObjectImpl::get_type_data()
Diffstat (limited to 'audio/csound/src')
-rw-r--r--audio/csound/src/filter.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/audio/csound/src/filter.rs b/audio/csound/src/filter.rs
index a33aa770e..d6c56f91a 100644
--- a/audio/csound/src/filter.rs
+++ b/audio/csound/src/filter.rs
@@ -15,9 +15,9 @@
// Free Software Foundation, Inc., 51 Franklin Street, Suite 500,
// Boston, MA 02110-1335, USA.
+use glib::glib_object_subclass;
use glib::subclass;
use glib::subclass::prelude::*;
-use glib::{glib_object_impl, glib_object_subclass};
use gst::prelude::*;
use gst::subclass::prelude::*;
use gst::{
@@ -431,8 +431,6 @@ impl ObjectSubclass for CsoundFilter {
}
impl ObjectImpl for CsoundFilter {
- glib_object_impl!();
-
fn set_property(&self, _obj: &glib::Object, id: usize, value: &glib::Value) {
let prop = &PROPERTIES[id];
match *prop {