1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-04 03:40:07 +00:00

Removed the (rather pointless) granularity value from the array objects. Converted a few macros into functions and other misc code clean-ups.

This commit is contained in:
Julian Storer 2010-01-13 18:58:40 +00:00
parent c368805559
commit 97035bb3a1
69 changed files with 218 additions and 369 deletions

View file

@ -415,7 +415,7 @@ struct MidiOutHandle
juce_UseDebuggingNewOperator
};
static VoidArray handles (4);
static Array <MidiOutHandle*> midiOutputHandles;
//==============================================================================
const StringArray MidiOutput::getDevices()
@ -485,9 +485,9 @@ MidiOutput* MidiOutput::openDevice (int index)
}
}
for (i = handles.size(); --i >= 0;)
for (i = midiOutputHandles.size(); --i >= 0;)
{
MidiOutHandle* const han = (MidiOutHandle*) handles.getUnchecked(i);
MidiOutHandle* const han = midiOutputHandles.getUnchecked(i);
if (han != 0 && han->deviceId == deviceId)
{
@ -510,7 +510,7 @@ MidiOutput* MidiOutput::openDevice (int index)
han->deviceId = deviceId;
han->refCount = 1;
han->handle = h;
handles.add (han);
midiOutputHandles.add (han);
MidiOutput* const out = new MidiOutput();
out->internal = (void*) han;
@ -533,10 +533,10 @@ MidiOutput::~MidiOutput()
{
MidiOutHandle* const h = (MidiOutHandle*) internal;
if (handles.contains ((void*) h) && --(h->refCount) == 0)
if (midiOutputHandles.contains (h) && --(h->refCount) == 0)
{
midiOutClose (h->handle);
handles.removeValue ((void*) h);
midiOutputHandles.removeValue (h);
delete h;
}
}