dbus-interfaces: Add names to introspection data for notifications

This makes it easier to use via gdbus/d-feet.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2398>
This commit is contained in:
Robert Ancell 2022-08-03 13:39:14 +12:00 committed by Marge Bot
parent 9b3ee774f6
commit 04d4d70988

View File

@ -1,13 +1,13 @@
<node> <node>
<interface name="org.gtk.Notifications"> <interface name="org.gtk.Notifications">
<method name="AddNotification"> <method name="AddNotification">
<arg type="s" direction="in"/> <arg name="app_id" type="s" direction="in"/>
<arg type="s" direction="in"/> <arg name="id" type="s" direction="in"/>
<arg type="a{sv}" direction="in"/> <arg name="notification" type="a{sv}" direction="in"/>
</method> </method>
<method name="RemoveNotification"> <method name="RemoveNotification">
<arg type="s" direction="in"/> <arg name="app_id" type="s" direction="in"/>
<arg type="s" direction="in"/> <arg name="id" type="s" direction="in"/>
</method> </method>
</interface> </interface>
</node> </node>