Remove obsolete function - qSort()

This commit is contained in:
Oskar Wallgren
2017-10-19 03:35:55 +02:00
parent 81966fa1a6
commit 9341acd129

View File

@@ -271,7 +271,7 @@ Note * Pattern::noteAtStep( int _step )
void Pattern::rearrangeAllNotes()
{
// sort notes by start time
qSort(m_notes.begin(), m_notes.end(), Note::lessThan );
std::sort(m_notes.begin(), m_notes.end(), Note::lessThan);
}