From cbb1ec9a56420aa711f4a0fb1b03648024dea007 Mon Sep 17 00:00:00 2001 From: IanCaio Date: Wed, 29 Jul 2020 13:58:07 -0300 Subject: [PATCH] Removes unused variable on SongEditor.cpp (#5600) There was a variable declared but unused on the SongEditor.cpp file (method SongEditor::keyPressEvent), called QVector tcoViews. The variable was removed. --- src/gui/editors/SongEditor.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gui/editors/SongEditor.cpp b/src/gui/editors/SongEditor.cpp index a7f67c743..b6647d44a 100644 --- a/src/gui/editors/SongEditor.cpp +++ b/src/gui/editors/SongEditor.cpp @@ -575,7 +575,6 @@ void SongEditor::keyPressEvent( QKeyEvent * ke ) } else if( ke->key() == Qt::Key_Delete || ke->key() == Qt::Key_Backspace ) { - QVector tcoViews; QVector so = selectedObjects(); for( QVector::iterator it = so.begin(); it != so.end(); ++it )