remove ShiftRows

This commit is contained in:
Glenn Maynard
2005-12-18 08:02:51 +00:00
parent 037a13f70c
commit 37d82efe3f
2 changed files with 0 additions and 19 deletions
-8
View File
@@ -389,14 +389,6 @@ void TimingData::DeleteRows( int iStartRow, int iRowsToDelete )
this->SetBPMAtRow( iStartRow, fNewBPM );
}
void TimingData::ShiftRows( int iStartRow, int iRowsToShift )
{
if( iRowsToShift > 0 )
InsertRows( iStartRow, iRowsToShift );
else
DeleteRows( iStartRow, -iRowsToShift );
}
bool TimingData::HasBpmChanges() const
{
return m_BPMSegments.size()>1;