summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriain <iain@sleepfive.com>2012-08-28 11:48:59 +0100
committeriain <iain@sleepfive.com>2012-08-28 11:48:59 +0100
commit4f809ec661f76388a61a8b738eeb40a50fb155f4 (patch)
treedb6011006fc168f9acd54aa9257e1038760c0948
parentc329247eb419276064ea2cef47d2ccf4cb35f160 (diff)
Fix the signal signatures so the doc stripper doesn't break them
The doc stripper puts direction="in" for all parameters without a direction which broke on the signal signatures
-rw-r--r--interfaces/gypsy-discovery-full.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/interfaces/gypsy-discovery-full.xml b/interfaces/gypsy-discovery-full.xml
index e4c760b..1f394d7 100644
--- a/interfaces/gypsy-discovery-full.xml
+++ b/interfaces/gypsy-discovery-full.xml
@@ -9,12 +9,12 @@
<method name="StartScanning"/>
<method name="StopScanning"/>
<signal name="DeviceAdded">
- <arg type="s" name="added"/>
- <arg type="s" name="type"/>
+ <arg type="s" name="added" direction="out"/>
+ <arg type="s" name="type" direction="out"/>
</signal>
<signal name="DeviceRemoved">
- <arg type="s" name="removed"/>
- <arg type="s" name="type"/>
+ <arg type="s" name="removed" direction="out"/>
+ <arg type="s" name="type" direction="out"/>
</signal>
</interface>
</node>