updated clear automation method name

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@233 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Javier Serrano Polo
2006-07-14 20:13:48 +00:00
parent 492a49408a
commit e81136d0a5
2 changed files with 2 additions and 2 deletions

View File

@@ -1406,7 +1406,7 @@ void songEditor::clearProject( void )
clearAllTracks();
eng()->getAutomationEditor()->setCurrentPattern( NULL );
m_bpmSpinBox->getAutomationPattern()->clearValues();
m_bpmSpinBox->getAutomationPattern()->clear();
m_masterVolumeSlider->clearAutomationValues();
m_masterPitchSlider->clearAutomationValues();

View File

@@ -220,7 +220,7 @@ int automatableSlider::logicValue( void )
void automatableSlider::clearAutomationValues( void )
{
m_knob->getAutomationPattern()->clearValues();
m_knob->getAutomationPattern()->clear();
}