mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-14 00:14:18 +00:00
Reverted a mistaken change to AU hosting event handling code.
This commit is contained in:
parent
cc633ce3f5
commit
b4bd383a46
1 changed files with 6 additions and 1 deletions
|
|
@ -943,7 +943,12 @@ private:
|
|||
kAudioUnitScope_Global, 0, &info, sizeof (info));
|
||||
}
|
||||
|
||||
AUEventListenerCreate (eventListenerCallback, this, nullptr,
|
||||
AUEventListenerCreate (eventListenerCallback, this,
|
||||
#if MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_4
|
||||
CFRunLoopGetMain(),
|
||||
#else
|
||||
nullptr,
|
||||
#endif
|
||||
kCFRunLoopDefaultMode, 0, 0, &eventListenerRef);
|
||||
|
||||
for (int i = 0; i < parameters.size(); ++i)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue