1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Docs: Fix a typo

This commit is contained in:
Tom Poole 2023-09-01 13:57:36 +01:00
parent e37d70934a
commit bd8233f7f8

View file

@ -58,7 +58,7 @@ LookAndFeel::~LookAndFeel()
- there's a WeakReference to it somewhere else in your code
Generally the fix for this will be to make sure you call
Component::setLookandFeel (nullptr) on any components that were still using
Component::setLookAndFeel (nullptr) on any components that were still using
it before you delete it, or call LookAndFeel::setDefaultLookAndFeel (nullptr)
if you had set it up to be the default one. This assertion can also be avoided by
declaring your LookAndFeel object before any of the Components that use it as