Browse Source

Minor clean-up.

tags/2021-05-28
jules 12 years ago
parent
commit
da5b67bd03
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      modules/juce_audio_basics/midi/juce_MidiMessage.cpp
  2. +1
    -1
      modules/juce_audio_basics/midi/juce_MidiMessage.h

+ 1
- 1
modules/juce_audio_basics/midi/juce_MidiMessage.cpp View File

@@ -658,7 +658,7 @@ String MidiMessage::getTextFromTextMetaEvent() const
CharPointer_UTF8 (textData + getMetaEventLength()));
}
MidiMessage MidiMessage::textMetaEvent (int type, const StringRef& text)
MidiMessage MidiMessage::textMetaEvent (int type, StringRef text)
{
jassert (type > 0 && type < 16)


+ 1
- 1
modules/juce_audio_basics/midi/juce_MidiMessage.h View File

@@ -539,7 +539,7 @@ public:
String getTextFromTextMetaEvent() const;
/** Creates a text meta-event. */
static MidiMessage textMetaEvent (int type, const StringRef& text);
static MidiMessage textMetaEvent (int type, StringRef text);
//==============================================================================
/** Returns true if this is a 'tempo' meta-event.


Loading…
Cancel
Save