[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
Fri Jun 5 22:04:36 CEST 2009


vlc | branch: master | Derk-Jan Hartman <hartman at videolan.org> | Fri Jun  5 22:03:39 2009 +0200| [89db25d28acd949ea1690033e6af5a73df6aa4e1] | committer: Derk-Jan Hartman 

Qt4: forward and back were using key-pressed where they should be using key-action variable

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=89db25d28acd949ea1690033e6af5a73df6aa4e1
---

 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