mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-05 22:56:38 -05:00
C++11 inheritance updates
Add `override` and remove `virtual` where applicable
This commit is contained in:
@@ -63,7 +63,7 @@ public:
|
||||
}
|
||||
|
||||
|
||||
virtual void processInEvent( const MidiEvent& event, const MidiTime& time, f_cnt_t offset = 0 )
|
||||
void processInEvent( const MidiEvent& event, const MidiTime& time, f_cnt_t offset = 0 ) override
|
||||
{
|
||||
if( event.type() == MidiControlChange &&
|
||||
( m_midiPort.inputChannel() == 0 || m_midiPort.inputChannel() == event.channel() + 1 ) )
|
||||
|
||||
Reference in New Issue
Block a user