From 9e78aa7b32142148baf5e98fa08abb79e6a30a2a Mon Sep 17 00:00:00 2001 From: jules Date: Sat, 21 Oct 2017 08:27:57 +0100 Subject: [PATCH] Spelling fix --- modules/juce_core/containers/juce_ListenerList.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/juce_core/containers/juce_ListenerList.cpp b/modules/juce_core/containers/juce_ListenerList.cpp index 972122e0a0..16d671c108 100644 --- a/modules/juce_core/containers/juce_ListenerList.cpp +++ b/modules/juce_core/containers/juce_ListenerList.cpp @@ -30,7 +30,7 @@ struct ListenerBase ListenerBase (int& counter) : c (counter) {} virtual ~ListenerBase() {} - // Required to supress VS2013 compiler warnings + // Required to suppress VS2013 compiler warnings ListenerBase& operator= (const ListenerBase&) = delete; virtual void f () = 0; @@ -48,7 +48,7 @@ struct Listener1 : public ListenerBase { Listener1 (int& counter) : ListenerBase (counter) {} - // Required to supress VS2013 compiler warnings + // Required to suppress VS2013 compiler warnings Listener1& operator= (const Listener1&) = delete; void f () override { c += 1; } @@ -64,7 +64,7 @@ struct Listener2 : public ListenerBase { Listener2 (int& counter) : ListenerBase (counter) {} - // Required to supress VS2013 compiler warnings + // Required to suppress VS2013 compiler warnings Listener1& operator= (const Listener1&) = delete; void f () override { c -= 2; }