diff options
author | Matthias Clasen <mclasen@redhat.com> | 2016-07-01 01:12:30 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2016-07-06 23:51:47 -0400 |
commit | 52b8690617d4088a69096a1d7557bc437908f382 (patch) | |
tree | f5b1911a45ab66c042db5878d5446fa963d35008 /gio/giomodule.c | |
parent | bb6223bdef2ec888d8a3fde049b67b2d3a5f568a (diff) | |
download | glib-portal2.tar.gz |
Add a portal backend for GNotificationportal2
This will talk to a portal api instead of directly to the shell.
Diffstat (limited to 'gio/giomodule.c')
-rw-r--r-- | gio/giomodule.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gio/giomodule.c b/gio/giomodule.c index b181e84bb..0c32af494 100644 --- a/gio/giomodule.c +++ b/gio/giomodule.c @@ -915,6 +915,7 @@ extern GType _g_network_monitor_nm_get_type (void); #ifdef G_OS_UNIX extern GType g_fdo_notification_backend_get_type (void); extern GType g_gtk_notification_backend_get_type (void); +extern GType g_portal_notification_backend_get_type (void); #endif #ifdef HAVE_COCOA @@ -1116,6 +1117,7 @@ _g_io_modules_ensure_loaded (void) g_type_ensure (_g_unix_volume_monitor_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 ()); #endif #ifdef HAVE_COCOA g_type_ensure (g_cocoa_notification_backend_get_type ()); |