Browse Source

Fixed some Doxygen issues

v6.1.6
ed 4 years ago
parent
commit
533f68219b
2 changed files with 8 additions and 5 deletions
  1. +4
    -2
      modules/juce_gui_basics/components/juce_Component.h
  2. +4
    -3
      modules/juce_gui_basics/widgets/juce_TextEditor.h

+ 4
- 2
modules/juce_gui_basics/components/juce_Component.h View File

@@ -2415,14 +2415,14 @@ public:
By default this is set to true. By default this is set to true.
@see getAccessibilityHandler, createAccessibilityHandler
@see getAccessibilityHandler
*/ */
void setAccessible (bool shouldBeAccessible); void setAccessible (bool shouldBeAccessible);
/** Returns the accessibility handler for this component, or nullptr if this component is not /** Returns the accessibility handler for this component, or nullptr if this component is not
accessible. accessible.
@see createAccessibilityHandler, setAccessible
@see setAccessible
*/ */
AccessibilityHandler* getAccessibilityHandler(); AccessibilityHandler* getAccessibilityHandler();
@@ -2435,6 +2435,7 @@ public:
void invalidateAccessibilityHandler(); void invalidateAccessibilityHandler();
//============================================================================== //==============================================================================
#ifndef DOXYGEN
// This method has been deprecated in favour of the setFocusContainerType() method // This method has been deprecated in favour of the setFocusContainerType() method
// that takes a more descriptive enum. // that takes a more descriptive enum.
JUCE_DEPRECATED_WITH_BODY (void setFocusContainer (bool shouldBeFocusContainer) noexcept, JUCE_DEPRECATED_WITH_BODY (void setFocusContainer (bool shouldBeFocusContainer) noexcept,
@@ -2442,6 +2443,7 @@ public:
setFocusContainerType (shouldBeFocusContainer ? FocusContainerType::keyboardFocusContainer setFocusContainerType (shouldBeFocusContainer ? FocusContainerType::keyboardFocusContainer
: FocusContainerType::none); : FocusContainerType::none);
}) })
#endif
private: private:
//============================================================================== //==============================================================================


+ 4
- 3
modules/juce_gui_basics/widgets/juce_TextEditor.h View File

@@ -68,9 +68,10 @@ public:
See also the setReturnKeyStartsNewLine() method, which will also need to be turned See also the setReturnKeyStartsNewLine() method, which will also need to be turned
on if you want a multi-line editor with line-breaks. 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 @see isMultiLine, setReturnKeyStartsNewLine, setScrollbarsShown
*/ */


Loading…
Cancel
Save