Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
renamed muteHasChanged to muteChanged in InstrumentTrackView
  • Loading branch information
curlymorphic committed Jan 29, 2015
commit 5ce1bd874dcc6b09f5a60040f37c07c7eae7d400
2 changes: 1 addition & 1 deletion include/InstrumentTrack.h
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ private slots:
void midiInSelected();
void midiOutSelected();
void midiConfigChanged();
void muteHasChanged();
void muteChanged();


private:
Expand Down
4 changes: 2 additions & 2 deletions src/tracks/InstrumentTrack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ InstrumentTrackView::InstrumentTrackView( InstrumentTrack * _it, TrackContainerV
connect( m_activityIndicator, SIGNAL( released() ),
this, SLOT( activityIndicatorReleased() ) );
_it->setIndicator( m_activityIndicator );
connect( &_it->m_mutedModel, SIGNAL( dataChanged() ), this, SLOT( muteHasChanged() ) );
connect( &_it->m_mutedModel, SIGNAL( dataChanged() ), this, SLOT( muteChanged() ) );

setModel( _it );
}
Expand Down Expand Up @@ -1131,7 +1131,7 @@ void InstrumentTrackView::midiConfigChanged()



void InstrumentTrackView::muteHasChanged()
void InstrumentTrackView::muteChanged()
{
if(model()->m_mutedModel.value() )
{
Expand Down