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

Accessibility: Make createAccessibilityHandler public to allow calls from derived classes

This commit is contained in:
reuk 2023-02-06 20:08:59 +00:00
parent 408f6030e6
commit 9cfbccca8e
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
38 changed files with 107 additions and 59 deletions

View file

@ -400,6 +400,8 @@ public:
bool perform (const InvocationInfo&) override;
/** @internal */
void lookAndFeelChanged() override;
/** @internal */
std::unique_ptr<AccessibilityHandler> createAccessibilityHandler() override;
private:
//==============================================================================
@ -454,7 +456,6 @@ private:
int getGutterSize() const noexcept;
//==============================================================================
std::unique_ptr<AccessibilityHandler> createAccessibilityHandler() override;
void insertText (const String&);
virtual void updateCaretPosition();
void updateScrollBars();