s/Modeller/Modeler/

This commit is contained in:
Matthias Kuhn 2018-03-05 22:37:39 -05:00 committed by Nyall Dawson
parent 569b39b257
commit 0d00491436
5 changed files with 14 additions and 13 deletions

View File

@ -181,7 +181,7 @@ dependent algorithms.
bool parametersCollapsed() const;
%Docstring
Returns true if the list of parameters for this algorithm should be collapsed
in the graphical modeller.
in the graphical modeler.
.. seealso:: :py:func:`setParametersCollapsed`
@ -191,7 +191,7 @@ in the graphical modeller.
void setParametersCollapsed( bool collapsed );
%Docstring
Sets whether the list of parameters for this algorithm should be collapsed
in the graphical modeller.
in the graphical modeler.
.. seealso:: :py:func:`parametersCollapsed`
@ -201,7 +201,7 @@ in the graphical modeller.
bool outputsCollapsed() const;
%Docstring
Returns true if the list of outputs for this algorithm should be collapsed
in the graphical modeller.
in the graphical modeler.
.. seealso:: :py:func:`setParametersCollapsed`
@ -211,7 +211,7 @@ in the graphical modeller.
void setOutputsCollapsed( bool collapsed );
%Docstring
Sets whether the list of outputs for this algorithm should be collapsed
in the graphical modeller.
in the graphical modeler.
.. seealso:: :py:func:`outputsCollapsed`

View File

@ -4475,6 +4475,7 @@ mkaes:makes
mkaing:making
mkea:make
mmnemonic:mnemonic
modeller:modeler
moderm:modem
modfied:modified
modfies:modifies

View File

@ -175,7 +175,7 @@ class CORE_EXPORT QgsProcessingModelChildAlgorithm : public QgsProcessingModelCo
/**
* Returns true if the list of parameters for this algorithm should be collapsed
* in the graphical modeller.
* in the graphical modeler.
* \see setParametersCollapsed()
* \see outputsCollapsed()
*/
@ -183,7 +183,7 @@ class CORE_EXPORT QgsProcessingModelChildAlgorithm : public QgsProcessingModelCo
/**
* Sets whether the list of parameters for this algorithm should be collapsed
* in the graphical modeller.
* in the graphical modeler.
* \see parametersCollapsed()
* \see setOutputsCollapsed()
*/
@ -191,7 +191,7 @@ class CORE_EXPORT QgsProcessingModelChildAlgorithm : public QgsProcessingModelCo
/**
* Returns true if the list of outputs for this algorithm should be collapsed
* in the graphical modeller.
* in the graphical modeler.
* \see setParametersCollapsed()
* \see parametersCollapsed()
*/
@ -199,7 +199,7 @@ class CORE_EXPORT QgsProcessingModelChildAlgorithm : public QgsProcessingModelCo
/**
* Sets whether the list of outputs for this algorithm should be collapsed
* in the graphical modeller.
* in the graphical modeler.
* \see outputsCollapsed()
* \see setParametersCollapsed()
*/
@ -274,9 +274,9 @@ class CORE_EXPORT QgsProcessingModelChildAlgorithm : public QgsProcessingModelCo
//! List of child algorithms from the parent model on which this algorithm is dependent
QStringList mDependencies;
//! Whether list of parameters should be collapsed in the graphical modeller
//! Whether list of parameters should be collapsed in the graphical modeler
bool mParametersCollapsed = true;
//! Whether list of outputs should be collapsed in the graphical modeller
//! Whether list of outputs should be collapsed in the graphical modeler
bool mOutputsCollapsed = true;
};

View File

@ -1,6 +1,6 @@
#include "qgsprocessingparametertype.h"
bool QgsProcessingParameterType::exposeToModeller() const
bool QgsProcessingParameterType::exposeToModeler() const
{
return true;
}

View File

@ -45,10 +45,10 @@ class CORE_EXPORT QgsProcessingParameterType
virtual QString id() const = 0;
/**
* Determines if this parameter is available in the modeller.
* Determines if this parameter is available in the modeler.
* The default implementation returns true.
*/
virtual bool exposeToModeller() const;
virtual bool exposeToModeler() const;
/**
* Metadata for this parameter type. Can be used for example to define custom widgets.