Browse Source

Docs: Fix typo in Component child adding methods

v6.1.6
ed 4 years ago
parent
commit
ddb59d1361
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      modules/juce_gui_basics/components/juce_Component.h

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

@@ -700,7 +700,7 @@ public:
z-order will be left unchanged.
@param child the new component to add. If the component passed-in is already
the child of another component, it'll first be removed from it current parent.
the child of another component, it'll first be removed from its current parent.
@param zOrder The index in the child-list at which this component should be inserted.
A value of -1 will insert it in front of the others, 0 is the back.
@see removeChildComponent, addAndMakeVisible, addChildAndSetID, getChild, ComponentListener::componentChildrenChanged
@@ -718,7 +718,7 @@ public:
z-order will be left unchanged.
@param child the new component to add. If the component passed-in is already
the child of another component, it'll first be removed from it current parent.
the child of another component, it'll first be removed from its current parent.
@param zOrder The index in the child-list at which this component should be inserted.
A value of -1 will insert it in front of the others, 0 is the back.
@see removeChildComponent, addAndMakeVisible, addChildAndSetID, getChild, ComponentListener::componentChildrenChanged
@@ -731,7 +731,7 @@ public:
See addChildComponent() for more details.
@param child the new component to add. If the component passed-in is already
the child of another component, it'll first be removed from it current parent.
the child of another component, it'll first be removed from its current parent.
@param zOrder The index in the child-list at which this component should be inserted.
A value of -1 will insert it in front of the others, 0 is the back.
*/
@@ -743,7 +743,7 @@ public:
See addChildComponent() for more details.
@param child the new component to add. If the component passed-in is already
the child of another component, it'll first be removed from it current parent.
the child of another component, it'll first be removed from its current parent.
@param zOrder The index in the child-list at which this component should be inserted.
A value of -1 will insert it in front of the others, 0 is the back.
*/


Loading…
Cancel
Save