From b6bebb313f2f445840afda1736a93d29acbbf446 Mon Sep 17 00:00:00 2001 From: ed Date: Fri, 23 Nov 2018 17:35:42 +0000 Subject: [PATCH] Fixed a documentation error in ListenerList --- modules/juce_core/containers/juce_ListenerList.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/containers/juce_ListenerList.h b/modules/juce_core/containers/juce_ListenerList.h index 164e618e81..026190388c 100644 --- a/modules/juce_core/containers/juce_ListenerList.h +++ b/modules/juce_core/containers/juce_ListenerList.h @@ -101,7 +101,7 @@ public: /** Returns the number of registered listeners. */ int size() const noexcept { return listeners.size(); } - /** Returns true if any listeners are registered. */ + /** Returns true if no listeners are registered, false otherwise. */ bool isEmpty() const noexcept { return listeners.isEmpty(); } /** Clears the list. */