API dox: use @param for normal parameter listing, not @arg

This commit is contained in:
Friedrich W. H. Kossebau 2017-07-03 16:22:44 +02:00
parent f0cc90e45d
commit 0e1219d03b
4 changed files with 6 additions and 6 deletions

View File

@ -122,7 +122,7 @@ public:
* This allows the item data to be accessed (but not modified) from JavaScript.
* It returns an Object with a property for each role.
*
* @arg int i the row we want
* @param i the row we want
*/
Q_INVOKABLE QVariantMap get(int i) const;
@ -222,7 +222,7 @@ public:
* This allows the item data to be accessed (but not modified) from JavaScript.
* It returns an Object with a property for each role.
*
* @arg int i the row we want
* @param i the row we want
*/
Q_INVOKABLE QVariantMap get(int i) const;

View File

@ -143,7 +143,7 @@ public:
/**
* @returns a Plasma::Service given a source name
* @arg QString source source name we want a service of
* @param source source name we want a service of
*/
Q_INVOKABLE QObject *serviceForSource(const QString &source);

View File

@ -88,7 +88,7 @@ public:
/**
* Default constructor
*
* @arg structure if a NULL pointer is passed in, this will creates an empty (invalid) Package;
* @param structure if a NULL pointer is passed in, this will creates an empty (invalid) Package;
* otherwise the structure is allowed to set up the Package's initial layout
* @since 4.6
*/

View File

@ -54,8 +54,8 @@ public:
* compatible .desktop file within the package. If not defined, it is assumed that this file
* exists under the top level directory of the package.
*
* @arg package the Package to set up. The object is empty of all definition when
* first passed in.
* @param package the Package to set up. The object is empty of all definition when
* first passed in.
*/
PLASMA_DEPRECATED virtual void initPackage(Package *package);