From 8388a02cfbe5ab1513228d05cf024252696a4887 Mon Sep 17 00:00:00 2001 From: Jakob Leben Date: Sat, 13 Feb 2010 11:00:21 +0100 Subject: [PATCH] Qt: it's Qt::Key_Backspace not Qt::Key_Back --- modules/gui/qt4/components/playlist/standardpanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/qt4/components/playlist/standardpanel.cpp b/modules/gui/qt4/components/playlist/standardpanel.cpp index b2a664c1c0..eb4f7e0caa 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(event); if( keyEvent->key() == Qt::Key_Delete || - keyEvent->key() == Qt::Key_Back ) + keyEvent->key() == Qt::Key_Backspace ) { deleteSelection(); return true; -- 2.39.5