Skip to content
Snippets Groups Projects
Commit f34989d4 authored by gambas's avatar gambas
Browse files

Always specify the direction of input method arguments in introspection,...

Always specify the direction of input method arguments in introspection, otherwise the 'qdbusviewer' tool does not work.

[GB.DBUS]
* BUG: Always specify the direction of input method arguments in introspection, otherwise the 'qdbusviewer' tool does not work.
parent 6c9e0973
No related branches found
No related tags found
Loading
Pipeline #81707595 passed
# Gambas Project File 3.0
Title=gb.dbus
Startup=MMain
Version=3.11.90
Version=3.13.90
VersionFile=1
Component=gb.dbus
TabSize=2
......
......@@ -387,7 +387,7 @@ Public Sub _Introspect() As String
sArg = ""
For iInd = 0 To aSign.Max
sArg &= " <arg name=\"arg" & CStr(iInd + 1) & "\" type=\"" & aSign[iInd] & "\"/>\n"
sArg &= " <arg name=\"arg" & CStr(iInd + 1) & "\" type=\"" & aSign[iInd] & "\" direction=\"in\"/>\n"
Next
If sKind = Class.Event Then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment