renamed muted() to isMuted() and other coding-style fixes

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1067 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-06-03 16:03:59 +00:00
parent df203dd51e
commit a3aa3f9a4d
8 changed files with 44 additions and 19 deletions

View File

@@ -200,7 +200,7 @@ void liveToolView::toggleInstrument( int _n )
if( _n < engine::getBBTrackContainer()->tracks().count() )
{
track * t = engine::getBBTrackContainer()->tracks().at( _n );
t->setMuted( !t->muted() );
t->setMuted( !t->isMuted() );
}
}

View File

@@ -232,7 +232,6 @@ void nineButtonSelector::button8Clicked( void )
void nineButtonSelector::modelChanged( void )
{
printf("Model Changed %d", model()->value());
updateButton( model()->value() );
}