Skip to content

Commit

Permalink
[dbus] Specify direction for D-Bus method arguments. JB#48413
Browse files Browse the repository at this point in the history
Older gdbus-codegen doesn't like it so much that it crashes.
And honestly speaking, it does have a reason to not like it.
  • Loading branch information
monich committed Feb 24, 2021
1 parent 6205f62 commit 17a5fae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/dbus_service/org.sailfishos.nfc.LocalService.xml
Expand Up @@ -9,14 +9,14 @@
<arg name="accepted" type="b" direction="out"/>
</method>
<method name="DatagramReceived">
<arg name="rsap" type="u"/>
<arg name="data" type="ay"/>
<arg name="rsap" type="u" direction="in"/>
<arg name="data" type="ay" direction="in"/>
</method>
<method name="PeerArrived">
<arg name="path" type="o"/>
<arg name="path" type="o" direction="in"/>
</method>
<method name="PeerLeft">
<arg name="path" type="o"/>
<arg name="path" type="o" direction="in"/>
</method>
</interface>
</node>

0 comments on commit 17a5fae

Please sign in to comment.