DataEngine apidox: clarify that init() doesn't need to call base impl.

This commit is contained in:
Nicolás Alvarez 2011-07-01 20:18:24 -03:00
parent 09a24093cf
commit fe1fe477d0

View File

@ -83,7 +83,10 @@ class PLASMA_EXPORT DataEngine : public QObject
* This method is called when the DataEngine is started. When this
* method is called the DataEngine is fully constructed and ready to be
* used. This method should be reimplemented by DataEngine subclasses
* which have the need to perform a startup routine.
* which need to perform a startup routine.
*
* The default implementation does nothing. Reimplementations in
* subclasses don't need to call this one.
**/
virtual void init();