From b80d39777c0db033d1282a46a61110ba7b5aefba Mon Sep 17 00:00:00 2001 From: jules Date: Mon, 27 Jul 2015 09:26:59 +0100 Subject: [PATCH] Added some comments to DrawabkeComposite. --- modules/juce_gui_basics/drawables/juce_DrawableComposite.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/juce_gui_basics/drawables/juce_DrawableComposite.h b/modules/juce_gui_basics/drawables/juce_DrawableComposite.h index 1436b1f5bc..8c484c9879 100644 --- a/modules/juce_gui_basics/drawables/juce_DrawableComposite.h +++ b/modules/juce_gui_basics/drawables/juce_DrawableComposite.h @@ -30,6 +30,11 @@ /** A drawable object which acts as a container for a set of other Drawables. + Note that although this is a Component, it takes ownership of its child components + and will delete them, so that you can use it as a self-contained graphic object. + The intention is that you should not add your own components to it, only add other + Drawable objects. + @see Drawable */ class JUCE_API DrawableComposite : public Drawable