mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-22 07:54:18 +01:00
dbus: Fix annotation deprecation warnings
The com.trolltech was renamed to org.qtproject. The code generation tool still handles the old name, but prints a deprecation error. Reference: https://bugreports.qt.io/browse/QTBUG-23274
This commit is contained in:
parent
f04657e7e7
commit
280a514ebc
@ -4,12 +4,12 @@
|
||||
<interface name="org.freedesktop.DBus.ObjectManager">
|
||||
<method name="GetManagedObjects">
|
||||
<arg name="objects" type="a{oa{sa{sv}}}" direction="out"/>
|
||||
<annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="ManagedObjectList"/>
|
||||
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="ManagedObjectList"/>
|
||||
</method>
|
||||
<signal name="InterfacesAdded">
|
||||
<arg name="object" type="o"/>
|
||||
<arg name="interfaces" type="a{sa{sv}}"/>
|
||||
<annotation name="com.trolltech.QtDBus.QtTypeName.In1" value="InterfacesAndProperties"/>
|
||||
<annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="InterfacesAndProperties"/>
|
||||
</signal>
|
||||
<signal name="InterfacesRemoved">
|
||||
<arg type="o" name="object_path"/>
|
||||
|
@ -4,7 +4,7 @@
|
||||
<interface name="org.freedesktop.UDisks2.Drive">
|
||||
<method name="Eject">
|
||||
<arg type="a{sv}" name="options" direction="in"/>
|
||||
<annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QVariantMap"/>
|
||||
<annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QVariantMap"/>
|
||||
</method>
|
||||
<property type="s" name="Vendor" access="read"/>
|
||||
<property type="s" name="Model" access="read"/>
|
||||
|
@ -4,15 +4,15 @@
|
||||
<interface name="org.freedesktop.UDisks2.Filesystem">
|
||||
<method name="Mount">
|
||||
<arg type="a{sv}" name="options" direction="in"/>
|
||||
<annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QVariantMap"/>
|
||||
<annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QVariantMap"/>
|
||||
<arg type="s" name="mount_path" direction="out"/>
|
||||
</method>
|
||||
<method name="Unmount">
|
||||
<arg type="a{sv}" name="options" direction="in"/>
|
||||
<annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QVariantMap"/>
|
||||
<annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QVariantMap"/>
|
||||
</method>
|
||||
<property type="aay" name="MountPoints" access="read">
|
||||
<annotation name="com.trolltech.QtDBus.QtTypeName" value="QList<QByteArray>"/>
|
||||
<annotation name="org.qtproject.QtDBus.QtTypeName" value="QList<QByteArray>"/>
|
||||
</property>
|
||||
</interface>
|
||||
</node>
|
||||
|
Loading…
Reference in New Issue
Block a user