API dox: Use code markup for described dataUpdated slot signature
This commit is contained in:
parent
b5b4f2d3b8
commit
85193f8c75
@ -103,8 +103,9 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Connects a source to an object for data updates. The object must
|
* Connects a source to an object for data updates. The object must
|
||||||
* have a slot with the following signature:
|
* have a slot with the following signature:
|
||||||
*
|
* @code
|
||||||
* dataUpdated(const QString &sourceName, const Plasma::DataEngine::Data &data)
|
* void dataUpdated(const QString &sourceName, const Plasma::DataEngine::Data &data);
|
||||||
|
* @endcode
|
||||||
*
|
*
|
||||||
* The data is a QHash of QVariants keyed by QString names, allowing
|
* The data is a QHash of QVariants keyed by QString names, allowing
|
||||||
* one data source to provide sets of related data.
|
* one data source to provide sets of related data.
|
||||||
@ -129,8 +130,9 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Connects all currently existing sources to an object for data updates.
|
* Connects all currently existing sources to an object for data updates.
|
||||||
* The object must have a slot with the following signature:
|
* The object must have a slot with the following signature:
|
||||||
*
|
* @code
|
||||||
* SLOT(dataUpdated(QString,Plasma::DataEngine::Data))
|
* void dataUpdated(const QString &sourceName, const Plasma::DataEngine::Data &data);
|
||||||
|
* @endcode
|
||||||
*
|
*
|
||||||
* The data is a QHash of QVariants keyed by QString names, allowing
|
* The data is a QHash of QVariants keyed by QString names, allowing
|
||||||
* one data source to provide sets of related data.
|
* one data source to provide sets of related data.
|
||||||
|
Loading…
Reference in New Issue
Block a user