Removes unused variable on SongEditor.cpp (#5600)
There was a variable declared but unused on the SongEditor.cpp file (method SongEditor::keyPressEvent), called QVector<TrackContentObjectView *> tcoViews. The variable was removed.
This commit is contained in:
@@ -575,7 +575,6 @@ void SongEditor::keyPressEvent( QKeyEvent * ke )
|
||||
}
|
||||
else if( ke->key() == Qt::Key_Delete || ke->key() == Qt::Key_Backspace )
|
||||
{
|
||||
QVector<TrackContentObjectView *> tcoViews;
|
||||
QVector<selectableObject *> so = selectedObjects();
|
||||
for( QVector<selectableObject *>::iterator it = so.begin();
|
||||
it != so.end(); ++it )
|
||||
|
||||
Reference in New Issue
Block a user