[vlc-commits] Qt, code simplification

Jean-Baptiste Kempf git at videolan.org
Thu Apr 21 17:55:42 CEST 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Apr 21 17:55:20 2011 +0200| [d9ab4df5dd28e4788ed63dd11ee7220f5c55158f] | committer: Jean-Baptiste Kempf

Qt, code simplification

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

 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 7ac8f2c..cc4e535 100644
--- a/modules/gui/qt4/actions_manager.cpp
+++ b/modules/gui/qt4/actions_manager.cpp
@@ -187,11 +187,11 @@ void ActionsManager::AudioDown()
 
 void ActionsManager::skipForward()
 {
-    var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_JUMP_FORWARD_SHORT );
+    THEMIM->getIM()->jumpFwd();
 }
 
 void ActionsManager::skipBackward()
 {
-    var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_JUMP_BACKWARD_SHORT );
+    THEMIM->getIM()->jumpBwd();
 }
 



More information about the vlc-commits mailing list