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>2023-01-16 12:51:10 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-01-16 12:51:10 +0300
commit4464bf2eaac214aade6be0248859823cc9e837a3 (patch)
treea4509c6ccb2dcc4a94e3985cf6e03de5d09c082e /utils/fallbackswitch
parent6132788b02b38b5f0d0019f40a66a52e2d33177e (diff)
Update for `gtk::Application` constructor API changes
Diffstat (limited to 'utils/fallbackswitch')
-rw-r--r--utils/fallbackswitch/examples/gtk_fallbackswitch.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/fallbackswitch/examples/gtk_fallbackswitch.rs b/utils/fallbackswitch/examples/gtk_fallbackswitch.rs
index d5f5d8c6e..0f2957251 100644
--- a/utils/fallbackswitch/examples/gtk_fallbackswitch.rs
+++ b/utils/fallbackswitch/examples/gtk_fallbackswitch.rs
@@ -203,7 +203,7 @@ fn main() {
gstfallbackswitch::plugin_register_static().expect("Failed to register fallbackswitch plugin");
gstgtk4::plugin_register_static().expect("Failed to register gtk4paintablesink plugin");
- let app = gtk::Application::new(None, gio::ApplicationFlags::FLAGS_NONE);
+ let app = gtk::Application::new(None::<&str>, gio::ApplicationFlags::FLAGS_NONE);
app.connect_activate(create_ui);
app.run();