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
path: root/text/wrap
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-11-02 15:10:59 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-11-02 15:10:59 +0300
commit16b917abb10d92096070392e3765affadc5cde29 (patch)
treeadadbcf111cdc98ecb7e2339c6e3b62471172fef /text/wrap
parent436b6d8efbfa0bffc1d9193dbb3ffb0c1be4d718 (diff)
Update for `gst::Rank` API changes
Diffstat (limited to 'text/wrap')
-rw-r--r--text/wrap/src/gsttextwrap/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/text/wrap/src/gsttextwrap/mod.rs b/text/wrap/src/gsttextwrap/mod.rs
index 173c74a32..ff6dcd97b 100644
--- a/text/wrap/src/gsttextwrap/mod.rs
+++ b/text/wrap/src/gsttextwrap/mod.rs
@@ -19,7 +19,7 @@ pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
gst::Element::register(
Some(plugin),
"textwrap",
- gst::Rank::None,
+ gst::Rank::NONE,
TextWrap::static_type(),
)
}