From fe1fe477d04b0355625bdcb74672e33d6903dc95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Alvarez?= Date: Fri, 1 Jul 2011 20:18:24 -0300 Subject: [PATCH] DataEngine apidox: clarify that init() doesn't need to call base impl. --- dataengine.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dataengine.h b/dataengine.h index 6623900e0..097d77bc0 100644 --- a/dataengine.h +++ b/dataengine.h @@ -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();