From 06accc8d98cc2876bcacfc6f9e097af690b4e64f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laignel?= Date: Mon, 12 Apr 2021 14:49:54 +0200 Subject: fix-getters-{def,calls} pass --- audio/audiofx/src/audioecho/imp.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'audio/audiofx/src/audioecho/imp.rs') diff --git a/audio/audiofx/src/audioecho/imp.rs b/audio/audiofx/src/audioecho/imp.rs index 5f873ec9b..565ebd55a 100644 --- a/audio/audiofx/src/audioecho/imp.rs +++ b/audio/audiofx/src/audioecho/imp.rs @@ -143,7 +143,7 @@ impl ObjectImpl for AudioEcho { value: &glib::Value, pspec: &glib::ParamSpec, ) { - match pspec.get_name() { + match pspec.name() { "max-delay" => { let mut settings = self.settings.lock().unwrap(); if self.state.lock().unwrap().is_none() { @@ -167,7 +167,7 @@ impl ObjectImpl for AudioEcho { } fn get_property(&self, _obj: &Self::Type, _id: usize, pspec: &glib::ParamSpec) -> glib::Value { - match pspec.get_name() { + match pspec.name() { "max-delay" => { let settings = self.settings.lock().unwrap(); settings.max_delay.to_value() -- cgit v1.2.3