From bb47c6c99a8500fe76c4760dcaf6eaf76feb26c7 Mon Sep 17 00:00:00 2001 From: reuk Date: Tue, 28 May 2024 19:49:55 +0100 Subject: [PATCH] ComponentPeer: Fix typo in name of internal windowRepaintedExplicitly enum --- modules/juce_gui_basics/windows/juce_ComponentPeer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_gui_basics/windows/juce_ComponentPeer.h b/modules/juce_gui_basics/windows/juce_ComponentPeer.h index 8d266945b3..2b4732a683 100644 --- a/modules/juce_gui_basics/windows/juce_ComponentPeer.h +++ b/modules/juce_gui_basics/windows/juce_ComponentPeer.h @@ -74,7 +74,7 @@ public: close button on it. */ windowHasDropShadow = (1 << 8), /**< Indicates that the window should have a drop-shadow (this may not be possible on all platforms). */ - windowRepaintedExplictly = (1 << 9), /**< Not intended for public use - this tells a window not to + windowRepaintedExplicitly = (1 << 9), /**< Not intended for public use - this tells a window not to do its own repainting, but only to repaint when the performAnyPendingRepaintsNow() method is called. */ windowIgnoresKeyPresses = (1 << 10), /**< Tells the window not to catch any keypresses. This can