mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-25 14:58:07 -05:00
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:
@@ -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 );
|
||||
|
||||
@@ -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 ) :
|
||||
|
||||
Reference in New Issue
Block a user