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:
authorBilal Elmoussaoui <bil.elmoussaoui@gmail.com>2021-11-08 12:55:40 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-11-08 15:43:53 +0300
commit82be7b3ac5911dd8b8cb13b3394f3159e57d6e3f (patch)
treee7e41d720aa7846d123734e7b8ad1ab42f2c82c0 /tutorial/src
parentd9bda62a4720c0539a443a4e489645e9bb4af1eb (diff)
adapt to ObjectExt improvements
Diffstat (limited to 'tutorial/src')
-rw-r--r--tutorial/src/progressbin/imp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/src/progressbin/imp.rs b/tutorial/src/progressbin/imp.rs
index 9546fc400..18c6b5752 100644
--- a/tutorial/src/progressbin/imp.rs
+++ b/tutorial/src/progressbin/imp.rs
@@ -64,7 +64,7 @@ impl ObjectSubclass for ProgressBin {
// Create the progressreport element.
let progress = gst::ElementFactory::make("progressreport", Some("progress")).unwrap();
// Don't let progressreport print to stdout itself
- progress.set_property("silent", true).unwrap();
+ progress.set_property("silent", true);
// Return an instance of our struct
Self {