[vlc-commits] commit: support channel up and channel down remote keys QT4+win32 ( Kaarlo Raiha )
git at videolan.org
git at videolan.org
Sun Dec 5 19:47:30 CET 2010
vlc | branch: master | Kaarlo Raiha <kaarlo.raiha at gmail.com> | Sun Dec 5 19:32:59 2010 +0200| [f787d521c43ab719c790fba0d996a738ec6b937d] | committer: Jean-Baptiste Kempf
support channel up and channel down remote keys QT4+win32
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f787d521c43ab719c790fba0d996a738ec6b937d
---
modules/gui/qt4/main_interface_win32.cpp | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/modules/gui/qt4/main_interface_win32.cpp b/modules/gui/qt4/main_interface_win32.cpp
index 386c909..62aed64 100644
--- a/modules/gui/qt4/main_interface_win32.cpp
+++ b/modules/gui/qt4/main_interface_win32.cpp
@@ -194,9 +194,11 @@ bool MainInterface::winEvent ( MSG * msg, long * result )
case APPCOMMAND_MEDIA_PAUSE:
THEMIM->pause();
break;
+ case APPCOMMAND_MEDIA_CHANNEL_DOWN:
case APPCOMMAND_MEDIA_PREVIOUSTRACK:
THEMIM->prev();
break;
+ case APPCOMMAND_MEDIA_CHANNEL_UP:
case APPCOMMAND_MEDIA_NEXTTRACK:
THEMIM->next();
break;
More information about the vlc-commits
mailing list