[vlc-devel] commit: Qt4: forward and back were using key-pressed where they should be using key-action variable (Derk-Jan Hartman )
git version control
git at videolan.org
Mon Jun 8 16:39:27 CEST 2009
vlc | branch: 1.0-bugfix | Derk-Jan Hartman <hartman at videolan.org> | Fri Jun 5 22:03:39 2009 +0200| [f1280182abcb6c6fe5518080602b94439ea096e9] | committer: Jean-Baptiste Kempf
Qt4: forward and back were using key-pressed where they should be using key-action variable
(cherry picked from commit 89db25d28acd949ea1690033e6af5a73df6aa4e1)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f1280182abcb6c6fe5518080602b94439ea096e9
---
modules/gui/qt4/actions_manager.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/actions_manager.cpp b/modules/gui/qt4/actions_manager.cpp
index 9a77bb6..ed5cd71 100644
--- a/modules/gui/qt4/actions_manager.cpp
+++ b/modules/gui/qt4/actions_manager.cpp
@@ -80,11 +80,11 @@ void ActionsManager::doAction( int id_action )
case REVERSE_ACTION:
THEMIM->getIM()->reverse(); break;
case SKIP_BACK_ACTION:
- var_SetInteger( p_intf->p_libvlc, "key-pressed",
+ var_SetInteger( p_intf->p_libvlc, "key-action",
ACTIONID_JUMP_BACKWARD_SHORT );
break;
case SKIP_FW_ACTION:
- var_SetInteger( p_intf->p_libvlc, "key-pressed",
+ var_SetInteger( p_intf->p_libvlc, "key-action",
ACTIONID_JUMP_FORWARD_SHORT );
break;
case QUIT_ACTION:
More information about the vlc-devel
mailing list