mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-18 00:54:19 +00:00
Changed the way Mac messaging works internally to avoid shutdown problems with plugins. Updated some iPhone code. Fixed a CoreGraphics line drawing problem.
This commit is contained in:
parent
9929d71c27
commit
802f850015
15 changed files with 422 additions and 415 deletions
|
|
@ -117,9 +117,12 @@ void MessageManager::deliverMessage (void* message)
|
|||
{
|
||||
quitMessageReceived = true;
|
||||
}
|
||||
else if (dynamic_cast <CallbackMessage*> (m) != 0)
|
||||
else
|
||||
{
|
||||
(dynamic_cast <CallbackMessage*> (m))->messageCallback();
|
||||
CallbackMessage* const cm = dynamic_cast <CallbackMessage*> (m);
|
||||
|
||||
if (cm != 0)
|
||||
cm->messageCallback();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue