mirror of
https://github.com/qgis/QGIS.git
synced 2025-11-27 00:07:16 -05:00
fix typos, add Q_DECL_DEPRECATED
This commit is contained in:
parent
2111d451f0
commit
89ddbc3863
@ -949,7 +949,7 @@ Evaluates the parameter with matching ``name`` to a list of fields.
|
|||||||
|
|
||||||
QStringList parameterAsStrings( const QVariantMap ¶meters, const QString &name, QgsProcessingContext &context ) const;
|
QStringList parameterAsStrings( const QVariantMap ¶meters, const QString &name, QgsProcessingContext &context ) const;
|
||||||
%Docstring
|
%Docstring
|
||||||
Evaluates the parameter with matching ``name`` to a list of strings (e.g. field names or point cloud atributes).
|
Evaluates the parameter with matching ``name`` to a list of strings (e.g. field names or point cloud attributes).
|
||||||
|
|
||||||
.. versionadded:: 3.32
|
.. versionadded:: 3.32
|
||||||
%End
|
%End
|
||||||
|
|||||||
@ -946,10 +946,10 @@ class CORE_EXPORT QgsProcessingAlgorithm
|
|||||||
*
|
*
|
||||||
* \deprecated use parameterAsStrings() instead.
|
* \deprecated use parameterAsStrings() instead.
|
||||||
*/
|
*/
|
||||||
QStringList parameterAsFields( const QVariantMap ¶meters, const QString &name, QgsProcessingContext &context ) const;
|
Q_DECL_DEPRECATED QStringList parameterAsFields( const QVariantMap ¶meters, const QString &name, QgsProcessingContext &context ) const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Evaluates the parameter with matching \a name to a list of strings (e.g. field names or point cloud atributes).
|
* Evaluates the parameter with matching \a name to a list of strings (e.g. field names or point cloud attributes).
|
||||||
*
|
*
|
||||||
* \since QGIS 3.32
|
* \since QGIS 3.32
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -1578,7 +1578,7 @@ class CORE_EXPORT QgsProcessingParameters
|
|||||||
*
|
*
|
||||||
* \deprecated use parameterAsStrings() instead.
|
* \deprecated use parameterAsStrings() instead.
|
||||||
*/
|
*/
|
||||||
static QStringList parameterAsFields( const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context );
|
Q_DECL_DEPRECATED static QStringList parameterAsFields( const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Evaluates the parameter with matching \a definition and \a value to a list of fields.
|
* Evaluates the parameter with matching \a definition and \a value to a list of fields.
|
||||||
@ -1586,7 +1586,7 @@ class CORE_EXPORT QgsProcessingParameters
|
|||||||
* \since QGIS 3.4
|
* \since QGIS 3.4
|
||||||
* \deprecated use parameterAsStrings() instead.
|
* \deprecated use parameterAsStrings() instead.
|
||||||
*/
|
*/
|
||||||
static QStringList parameterAsFields( const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context );
|
Q_DECL_DEPRECATED static QStringList parameterAsFields( const QgsProcessingParameterDefinition *definition, const QVariant &value, QgsProcessingContext &context );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Evaluates the parameter with matching \a definition to a list of strings (e.g. field names or point cloud attributes).
|
* Evaluates the parameter with matching \a definition to a list of strings (e.g. field names or point cloud attributes).
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user