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

Updated some documenation.

This commit is contained in:
jules 2014-02-22 16:58:58 +00:00
parent 48c2f42802
commit d76f55e018
2 changed files with 2 additions and 5 deletions

View file

@ -73,7 +73,7 @@ private:
class ActionMessage;
friend class ActionMessage;
SortedSet <ActionListener*> actionListeners;
SortedSet<ActionListener*> actionListeners;
CriticalSection actionListenerLock;
JUCE_DECLARE_NON_COPYABLE (ActionBroadcaster)

View file

@ -28,10 +28,7 @@
//==============================================================================
/**
Receives callbacks to indicate that some kind of event has occurred.
Used by various classes, e.g. buttons when they are pressed, to tell listeners
about something that's happened.
Interface class for delivery of events that are sent by an ActionBroadcaster.
@see ActionBroadcaster, ChangeListener
*/