1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-30 02:50:05 +00:00

Accessibility: Make createAccessibilityHandler() private in Component subclasses

This commit is contained in:
ed 2021-09-06 17:29:03 +01:00
parent dd08be6215
commit 90eb878d16
40 changed files with 69 additions and 101 deletions

View file

@ -262,12 +262,12 @@ public:
}
}
private:
std::unique_ptr<AccessibilityHandler> createAccessibilityHandler() override
{
return nullptr;
return createIgnoredAccessibilityHandler (*this);
}
private:
KeyMappingEditorComponent& owner;
OwnedArray<ChangeKeyButton> keyChangeButtons;
const CommandID commandID;