add a warning here for those who come later =)

svn path=/trunk/KDE/kdelibs/; revision=901289
This commit is contained in:
Aaron J. Seigo 2008-12-24 23:53:12 +00:00
parent 69eccb04ce
commit 0f70316466

View File

@ -640,6 +640,10 @@ class PLASMA_EXPORT Applet : public QGraphicsWidget
* If the applet requires a QGraphicsScene or has an particularly intensive * If the applet requires a QGraphicsScene or has an particularly intensive
* set of initialization routines to go through, consider implementing it * set of initialization routines to go through, consider implementing it
* in this method instead of the constructor. * in this method instead of the constructor.
*
* Note: paintInterface may get called before init() depending on initialization
* order. Painting is managed by the canvas (QGraphisScene), and may schedule a
* paint event prior to init() being called.
**/ **/
virtual void init(); virtual void init();