[vlc-devel] commit: Qt: it's Qt::Key_Backspace not Qt::Key_Back	(Jakob Leben )
    git version control 
    git at videolan.org
       
    Sat Feb 13 14:28:55 CET 2010
    
    
  
vlc | branch: master | Jakob Leben <jleben at videolan.org> | Sat Feb 13 11:00:21 2010 +0100| [8388a02cfbe5ab1513228d05cf024252696a4887] | committer: Jakob Leben 
Qt: it's Qt::Key_Backspace not Qt::Key_Back
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8388a02cfbe5ab1513228d05cf024252696a4887
---
 .../gui/qt4/components/playlist/standardpanel.cpp  |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/components/playlist/standardpanel.cpp b/modules/gui/qt4/components/playlist/standardpanel.cpp
index b2a664c..eb4f7e0 100644
--- a/modules/gui/qt4/components/playlist/standardpanel.cpp
+++ b/modules/gui/qt4/components/playlist/standardpanel.cpp
@@ -300,7 +300,7 @@ bool StandardPLPanel::eventFilter ( QObject * watched, QEvent * event )
     {
         QKeyEvent *keyEvent = static_cast<QKeyEvent*>(event);
         if( keyEvent->key() == Qt::Key_Delete ||
-            keyEvent->key() == Qt::Key_Back )
+            keyEvent->key() == Qt::Key_Backspace )
         {
             deleteSelection();
             return true;
    
    
More information about the vlc-devel
mailing list