From 35f6c65b3524f39eb8c8631d2e5aa0d61e72fc78 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 10 Feb 2022 19:23:49 +0000 Subject: [PATCH] giomodule: Ensure `GDebugControllerDBus` is registered MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Or it’ll never work as a `GIOModule`, as the implementation won’t be found. Signed-off-by: Philip Withnall Helps: #1190 --- gio/giomodule.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gio/giomodule.c b/gio/giomodule.c index e727b83bc..38ea7bc48 100644 --- a/gio/giomodule.c +++ b/gio/giomodule.c @@ -1343,6 +1343,7 @@ _g_io_modules_ensure_loaded (void) #endif #ifdef G_OS_UNIX g_type_ensure (_g_unix_volume_monitor_get_type ()); + g_type_ensure (g_debug_controller_dbus_get_type ()); g_type_ensure (g_fdo_notification_backend_get_type ()); g_type_ensure (g_gtk_notification_backend_get_type ()); g_type_ensure (g_portal_notification_backend_get_type ());