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

Minor clean-ups.

This commit is contained in:
Julian Storer 2010-09-10 22:47:38 +01:00
parent dffa2dc6e7
commit 73f17dba08
4 changed files with 1597 additions and 1593 deletions

File diff suppressed because it is too large Load diff

View file

@ -25683,6 +25683,8 @@ private:
void endModal (Component* component, int returnValue);
void endModal (Component* component);
ModalComponentManager (const ModalComponentManager&);
ModalComponentManager& operator= (const ModalComponentManager&);
};
#endif // __JUCE_MODALCOMPONENTMANAGER_JUCEHEADER__
@ -26210,8 +26212,8 @@ public:
/** Adds a child component to this one, and also makes the child visible if it isn't.
Quite a useful function, this is just the same as calling addChildComponent()
followed by setVisible (true) on the child. See addChildComponent() for more details.
Quite a useful function, this is just the same as calling setVisible (true) on the child
and then addChildComponent(). See addChildComponent() for more details.
*/
void addAndMakeVisible (Component* child, int zOrder = -1);

View file

@ -577,8 +577,8 @@ public:
/** Adds a child component to this one, and also makes the child visible if it isn't.
Quite a useful function, this is just the same as calling addChildComponent()
followed by setVisible (true) on the child. See addChildComponent() for more details.
Quite a useful function, this is just the same as calling setVisible (true) on the child
and then addChildComponent(). See addChildComponent() for more details.
*/
void addAndMakeVisible (Component* child, int zOrder = -1);

View file

@ -138,6 +138,8 @@ private:
void endModal (Component* component, int returnValue);
void endModal (Component* component);
ModalComponentManager (const ModalComponentManager&);
ModalComponentManager& operator= (const ModalComponentManager&);
};