diff --git a/modules/juce_gui_basics/components/juce_Component.h b/modules/juce_gui_basics/components/juce_Component.h index 03a0f1614c..fd1b94e7bb 100644 --- a/modules/juce_gui_basics/components/juce_Component.h +++ b/modules/juce_gui_basics/components/juce_Component.h @@ -2415,14 +2415,14 @@ public: By default this is set to true. - @see getAccessibilityHandler, createAccessibilityHandler + @see getAccessibilityHandler */ void setAccessible (bool shouldBeAccessible); /** Returns the accessibility handler for this component, or nullptr if this component is not accessible. - @see createAccessibilityHandler, setAccessible + @see setAccessible */ AccessibilityHandler* getAccessibilityHandler(); @@ -2435,6 +2435,7 @@ public: void invalidateAccessibilityHandler(); //============================================================================== + #ifndef DOXYGEN // This method has been deprecated in favour of the setFocusContainerType() method // that takes a more descriptive enum. JUCE_DEPRECATED_WITH_BODY (void setFocusContainer (bool shouldBeFocusContainer) noexcept, @@ -2442,6 +2443,7 @@ public: setFocusContainerType (shouldBeFocusContainer ? FocusContainerType::keyboardFocusContainer : FocusContainerType::none); }) + #endif private: //============================================================================== diff --git a/modules/juce_gui_basics/widgets/juce_TextEditor.h b/modules/juce_gui_basics/widgets/juce_TextEditor.h index d4ed48e7b1..2aaec63a9a 100644 --- a/modules/juce_gui_basics/widgets/juce_TextEditor.h +++ b/modules/juce_gui_basics/widgets/juce_TextEditor.h @@ -68,9 +68,10 @@ public: See also the setReturnKeyStartsNewLine() method, which will also need to be turned on if you want a multi-line editor with line-breaks. - @param shouldWordWrap sets whether long lines should be broken up in multi-line editors. - If this is false and scrollbars are enabled a horizontal scrollbar - will be shown. + @param shouldBeMultiLine whether the editor should be multi- or single-line. + @param shouldWordWrap sets whether long lines should be broken up in multi-line editors. + If this is false and scrollbars are enabled a horizontal scrollbar + will be shown. @see isMultiLine, setReturnKeyStartsNewLine, setScrollbarsShown */