more apidox detail

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=788146
This commit is contained in:
Aaron J. Seigo 2008-03-20 20:56:49 +00:00
parent 5bd198db4a
commit 42c59df99a

View File

@ -271,6 +271,9 @@ class PLASMA_EXPORT DataEngine : public QObject
* Sets a value for a data source. If the source * Sets a value for a data source. If the source
* doesn't exist then it is created. * doesn't exist then it is created.
* *
* Note: Passing an empty or invalid QVariant as the value is
* functionally equivalent to calling removeSource(source);
*
* @param source the name of the data source * @param source the name of the data source
* @param value the data to associated with the source * @param value the data to associated with the source
**/ **/
@ -280,6 +283,9 @@ class PLASMA_EXPORT DataEngine : public QObject
* Sets a value for a data source. If the source * Sets a value for a data source. If the source
* doesn't exist then it is created. * doesn't exist then it is created.
* *
* Note: Passing an empty or invalid QVariant as the value is
* functionally equivalent to calling removeSource(source);
*
* @param source the name of the data source * @param source the name of the data source
* @param key the key to use for the data * @param key the key to use for the data
* @param value the data to associated with the source * @param value the data to associated with the source
@ -290,6 +296,9 @@ class PLASMA_EXPORT DataEngine : public QObject
* Adds a set of data to a data source. If the source * Adds a set of data to a data source. If the source
* doesn't exist then it is created. * doesn't exist then it is created.
* *
* Note: Passing an empty or invalid QVariant as the value is
* functionally equivalent to calling removeSource(source);
*
* @param source the name of the data source * @param source the name of the data source
* @param data the data to add to the source * @param data the data to add to the source
**/ **/