Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
33e494a7
Commit
33e494a7
authored
Aug 18, 2006
by
ipkiss
Browse files
* skins2/parser/interpreter.cpp: Restored action names modified in [15629]
parent
9891b2b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/skins2/parser/interpreter.cpp
View file @
33e494a7
...
...
@@ -91,9 +91,9 @@ Interpreter::Interpreter( intf_thread_t *pIntf ): SkinObject( pIntf )
m_commandMap
[
"playlist.setRepeat(false)"
]
=
CmdGenericPtr
(
new
CmdPlaylistRepeat
(
getIntf
(),
false
)
);
VarTree
&
rVarTree
=
VlcProc
::
instance
(
getIntf
()
)
->
getPlaytreeVar
();
m_commandMap
[
"play
tree
.del()"
]
=
m_commandMap
[
"play
list
.del()"
]
=
CmdGenericPtr
(
new
CmdPlaytreeDel
(
getIntf
(),
rVarTree
)
);
REGISTER_CMD
(
"play
tree
.sort()"
,
CmdPlaytreeSort
)
REGISTER_CMD
(
"play
list
.sort()"
,
CmdPlaytreeSort
)
REGISTER_CMD
(
"vlc.fullscreen()"
,
CmdFullscreen
)
REGISTER_CMD
(
"vlc.play()"
,
CmdPlay
)
REGISTER_CMD
(
"vlc.pause()"
,
CmdPause
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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