Commit d77c14f0 authored by Sean Robinson's avatar Sean Robinson Committed by Mirsal Ennaime

dbus: Fix the Seek method's introspection data

The position is an input parameter, not a return value.
Signed-off-by: default avatarMirsal Ennaime <mirsal@videolan.org>
parent 7531cecf
...@@ -90,7 +90,7 @@ static const char* psz_introspection_xml = ...@@ -90,7 +90,7 @@ static const char* psz_introspection_xml =
" <method name=\"Pause\" />\n" " <method name=\"Pause\" />\n"
" <method name=\"PlayPause\" />\n" " <method name=\"PlayPause\" />\n"
" <method name=\"Seek\">\n" " <method name=\"Seek\">\n"
" <arg type=\"x\" direction=\"out\" />\n" " <arg type=\"x\" direction=\"in\" />\n"
" </method>" " </method>"
" <method name=\"OpenUri\">\n" " <method name=\"OpenUri\">\n"
" <arg type=\"s\" direction=\"in\" />\n" " <arg type=\"s\" direction=\"in\" />\n"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment