1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Removed some unnecessary consts from the parameters for SynthesiserSound::appliesToNote and appliesToChannel

This commit is contained in:
jules 2014-09-25 15:45:49 +01:00
parent d284f892b5
commit 08a49cb6d4
5 changed files with 10 additions and 10 deletions

View file

@ -32,8 +32,8 @@ struct SineWaveSound : public SynthesiserSound
{
SineWaveSound() {}
bool appliesToNote (const int /*midiNoteNumber*/) { return true; }
bool appliesToChannel (const int /*midiChannel*/) { return true; }
bool appliesToNote (int /*midiNoteNumber*/) { return true; }
bool appliesToChannel (int /*midiChannel*/) { return true; }
};

View file

@ -21,8 +21,8 @@ class SineWaveSound : public SynthesiserSound
public:
SineWaveSound() {}
bool appliesToNote (const int /*midiNoteNumber*/) override { return true; }
bool appliesToChannel (const int /*midiChannel*/) override { return true; }
bool appliesToNote (int /*midiNoteNumber*/) override { return true; }
bool appliesToChannel (int /*midiChannel*/) override { return true; }
};
//==============================================================================

View file

@ -55,14 +55,14 @@ public:
The Synthesiser will use this information when deciding which sounds to trigger
for a given note.
*/
virtual bool appliesToNote (const int midiNoteNumber) = 0;
virtual bool appliesToNote (int midiNoteNumber) = 0;
/** Returns true if the sound should be triggered by midi events on a given channel.
The Synthesiser will use this information when deciding which sounds to trigger
for a given note.
*/
virtual bool appliesToChannel (const int midiChannel) = 0;
virtual bool appliesToChannel (int midiChannel) = 0;
/** The class is reference-counted, so this is a handy pointer class for it. */
typedef ReferenceCountedObjectPtr<SynthesiserSound> Ptr;

View file

@ -59,12 +59,12 @@ SamplerSound::~SamplerSound()
{
}
bool SamplerSound::appliesToNote (const int midiNoteNumber)
bool SamplerSound::appliesToNote (int midiNoteNumber)
{
return midiNotes [midiNoteNumber];
}
bool SamplerSound::appliesToChannel (const int /*midiChannel*/)
bool SamplerSound::appliesToChannel (int /*midiChannel*/)
{
return true;
}

View file

@ -82,8 +82,8 @@ public:
//==============================================================================
bool appliesToNote (const int midiNoteNumber) override;
bool appliesToChannel (const int midiChannel) override;
bool appliesToNote (int midiNoteNumber) override;
bool appliesToChannel (int midiChannel) override;
private: