mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 19:41:00 +00:00
regex: Fix compilation after array ParamSpec constructor rename
This commit is contained in:
parent
f4a3881dcf
commit
5660df7f70
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ impl ObjectSubclass for RegEx {
|
||||||
impl ObjectImpl for RegEx {
|
impl ObjectImpl for RegEx {
|
||||||
fn properties() -> &'static [glib::ParamSpec] {
|
fn properties() -> &'static [glib::ParamSpec] {
|
||||||
static PROPERTIES: Lazy<Vec<glib::ParamSpec>> = Lazy::new(|| {
|
static PROPERTIES: Lazy<Vec<glib::ParamSpec>> = Lazy::new(|| {
|
||||||
vec![glib::ParamSpec::array(
|
vec![glib::ParamSpec::new_array(
|
||||||
"commands",
|
"commands",
|
||||||
"Commands",
|
"Commands",
|
||||||
"A set of commands to apply on input text",
|
"A set of commands to apply on input text",
|
||||||
|
|
Loading…
Reference in a new issue