removed obsolete setMutedOfAllTracks() method

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1132 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-06-15 12:49:26 +00:00
parent 137196cec5
commit 4675d60eb5
2 changed files with 2 additions and 13 deletions

View File

@@ -56,8 +56,6 @@ public:
int countTracks( track::TrackTypes _tt = track::NumTrackTypes ) const;
void setMutedOfAllTracks( bool _muted );
virtual void updateAfterTrackAdd( void );
void addTrack( track * _track );

View File

@@ -90,7 +90,8 @@ void trackContainer::loadSettings( const QDomElement & _this )
else
{
start_val = pd->value();
pd->setMaximum( pd->maximum() + _this.childNodes().count() );
pd->setMaximum( pd->maximum() +
_this.childNodes().count() );
}
}
@@ -199,16 +200,6 @@ int trackContainer::countTracks( track::TrackTypes _tt ) const
void trackContainer::setMutedOfAllTracks( bool _muted )
{
for( int i = 0; i < m_tracks.size(); ++i )
{
m_tracks[i]->setMuted( _muted );
}
}
dummyTrackContainer::dummyTrackContainer( void ) :