Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
e1f4d89e
Commit
e1f4d89e
authored
Jan 31, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LIRC: remove non-working menu
parent
d66f3ddc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
26 deletions
+0
-26
modules/control/lirc.c
modules/control/lirc.c
+0
-26
No files found.
modules/control/lirc.c
View file @
e1f4d89e
...
...
@@ -35,7 +35,6 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_interface.h>
#include <vlc_osd.h>
#include <vlc_keys.h>
#ifdef HAVE_POLL
...
...
@@ -202,31 +201,6 @@ static void Process( intf_thread_t *p_intf )
else
msg_Err
(
p_intf
,
"Unknown hotkey '%s'"
,
c
);
}
else
if
(
!
strncmp
(
"menu "
,
c
,
5
)
)
{
if
(
!
strncmp
(
c
,
"menu on"
,
7
)
||
!
strncmp
(
c
,
"menu show"
,
9
))
osd_MenuShow
(
VLC_OBJECT
(
p_intf
)
);
else
if
(
!
strncmp
(
c
,
"menu off"
,
8
)
||
!
strncmp
(
c
,
"menu hide"
,
9
)
)
osd_MenuHide
(
VLC_OBJECT
(
p_intf
)
);
else
if
(
!
strncmp
(
c
,
"menu up"
,
7
)
)
osd_MenuUp
(
VLC_OBJECT
(
p_intf
)
);
else
if
(
!
strncmp
(
c
,
"menu down"
,
9
)
)
osd_MenuDown
(
VLC_OBJECT
(
p_intf
)
);
else
if
(
!
strncmp
(
c
,
"menu left"
,
9
)
)
osd_MenuPrev
(
VLC_OBJECT
(
p_intf
)
);
else
if
(
!
strncmp
(
c
,
"menu right"
,
10
)
)
osd_MenuNext
(
VLC_OBJECT
(
p_intf
)
);
else
if
(
!
strncmp
(
c
,
"menu select"
,
11
)
)
osd_MenuActivate
(
VLC_OBJECT
(
p_intf
)
);
else
{
msg_Err
(
p_intf
,
"Please provide one of the following parameters:"
);
msg_Err
(
p_intf
,
"[on|off|up|down|left|right|select]"
);
break
;
}
}
else
{
msg_Err
(
p_intf
,
"this doesn't appear to be a valid keycombo "
...
...
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