Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
271ddec3
Commit
271ddec3
authored
Apr 20, 2008
by
Mirsal Ennaime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix MPRIS method names
parent
d12c6644
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
modules/control/dbus.c
modules/control/dbus.c
+4
-4
modules/control/dbus.h
modules/control/dbus.h
+2
-2
No files found.
modules/control/dbus.c
View file @
271ddec3
...
...
@@ -488,7 +488,7 @@ DBUS_METHOD( DelTrack )
REPLY_SEND
;
}
DBUS_METHOD
(
Loop
)
DBUS_METHOD
(
Set
Loop
)
{
REPLY_INIT
;
OUT_ARGUMENTS
;
...
...
@@ -551,7 +551,7 @@ DBUS_METHOD( Repeat )
REPLY_SEND
;
}
DBUS_METHOD
(
Random
)
DBUS_METHOD
(
Set
Random
)
{
REPLY_INIT
;
OUT_ARGUMENTS
;
...
...
@@ -676,8 +676,8 @@ DBUS_METHOD( handle_tracklist )
METHOD_FUNC
(
"GetLength"
,
GetLength
);
METHOD_FUNC
(
"AddTrack"
,
AddTrack
);
METHOD_FUNC
(
"DelTrack"
,
DelTrack
);
METHOD_FUNC
(
"
Loop"
,
Loop
);
METHOD_FUNC
(
"
Random"
,
Random
);
METHOD_FUNC
(
"
SetLoop"
,
Set
Loop
);
METHOD_FUNC
(
"
SetRandom"
,
Set
Random
);
return
DBUS_HANDLER_RESULT_NOT_YET_HANDLED
;
}
...
...
modules/control/dbus.h
View file @
271ddec3
...
...
@@ -191,10 +191,10 @@ const char* psz_introspection_xml_data_tracklist =
" <method name=
\"
GetLength
\"
>
\n
"
" <arg type=
\"
i
\"
direction=
\"
out
\"
/>
\n
"
" </method>
\n
"
" <method name=
\"
Loop
\"
>
\n
"
" <method name=
\"
Set
Loop
\"
>
\n
"
" <arg type=
\"
b
\"
direction=
\"
in
\"
/>
\n
"
" </method>
\n
"
" <method name=
\"
Random
\"
>
\n
"
" <method name=
\"
Set
Random
\"
>
\n
"
" <arg type=
\"
b
\"
direction=
\"
in
\"
/>
\n
"
" </method>
\n
"
" <signal name=
\"
TrackListChange
\"
>
\n
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment