Fix error when generating D-Bus properties interface header

Fixes the following error
```
qdbusxml2cpp: Got unknown type `a{sv}' processing '/build/static-compat-syncthingtray/src/syncthingtray/syncthingconnector/org.freedesktop.DBus.Properties.xml'
You should add <annotation name="org.qtproject.QtDBus.QtTypeName.Out1" value="<type>"/> to the XML description for 'changed_properties'
```
by following the suggestion of that error. Not sure why this
error occurs only now. Maybe `qdbusxml2cpp` changed in Qt 6.5.0.
This commit is contained in:
Martchus 2023-04-04 21:55:00 +02:00
parent 395e32de2b
commit 83225dbed6
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@
</method>
<signal name="PropertiesChanged">
<annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="QVariantMap"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.Out1" value="QVariantMap"/>
<arg type="s" name="interface" />
<arg type="a{sv}" name="changed_properties" />
<arg type="as" name="invalidated_properties" />