mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
ListenerList: Replace ListenerList with LightweightListenerList in select places
This commit is contained in:
parent
2e6ee49cfa
commit
059b667af2
4 changed files with 5 additions and 5 deletions
|
|
@ -72,7 +72,7 @@ public:
|
|||
|
||||
private:
|
||||
std::list<Callback> callbacks;
|
||||
ListenerList<Callback> listeners;
|
||||
LightweightListenerList<Callback> listeners;
|
||||
};
|
||||
|
||||
} // namespace juce::detail
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ public:
|
|||
|
||||
private:
|
||||
friend void notifyAllocationHooksForThread();
|
||||
ListenerList<Listener> listenerList;
|
||||
LightweightListenerList<Listener> listenerList;
|
||||
};
|
||||
|
||||
//==============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue