1
0
Fork 0
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:
Julian Storer 2009-11-16 15:19:16 +00:00
parent 9929d71c27
commit 802f850015
15 changed files with 422 additions and 415 deletions

View file

@ -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();
}
}
}