1
0
Fork 0
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:
Anthony Nicholls 2024-07-02 13:19:45 +01:00
parent 2e6ee49cfa
commit 059b667af2
4 changed files with 5 additions and 5 deletions

View file

@ -72,7 +72,7 @@ public:
private:
std::list<Callback> callbacks;
ListenerList<Callback> listeners;
LightweightListenerList<Callback> listeners;
};
} // namespace juce::detail

View file

@ -51,7 +51,7 @@ public:
private:
friend void notifyAllocationHooksForThread();
ListenerList<Listener> listenerList;
LightweightListenerList<Listener> listenerList;
};
//==============================================================================