1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Aiff float support.

This commit is contained in:
jules 2013-03-12 11:13:53 +00:00
parent 79099619f9
commit fdfdc2bbbf
4 changed files with 52 additions and 40 deletions

View file

@ -36,10 +36,9 @@ public:
void messageCallback()
{
const ActionBroadcaster* const b = broadcaster;
if (b != nullptr && b->actionListeners.contains (listener))
listener->actionListenerCallback (message);
if (const ActionBroadcaster* const b = broadcaster)
if (b->actionListeners.contains (listener))
listener->actionListenerCallback (message);
}
private: