Skip to content

Commit

Permalink
Fix see also links
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Mar 10, 2020
1 parent f587430 commit 95ec307
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -3666,14 +3666,14 @@ Returns the type name for the parameter class.
%Docstring
Returns the ID of the provider associated with the connections.

.. seealso:: :py:func:`setProvider`
.. seealso:: :py:func:`setProviderId`
%End

void setProviderId( const QString &provider );
%Docstring
Sets the ID of the ``provider`` associated with the connections.

.. seealso:: :py:func:`provider`
.. seealso:: :py:func:`providerId`
%End

static QgsProcessingParameterProviderConnection *fromScriptCode( const QString &name, const QString &description, bool isOptional, const QString &definition ) /Factory/;
Expand Down
4 changes: 2 additions & 2 deletions src/core/processing/qgsprocessingparameters.h
Expand Up @@ -3407,13 +3407,13 @@ class CORE_EXPORT QgsProcessingParameterProviderConnection : public QgsProcessin

/**
* Returns the ID of the provider associated with the connections.
* \see setProvider()
* \see setProviderId()
*/
QString providerId() const { return mProviderId; }

/**
* Sets the ID of the \a provider associated with the connections.
* \see provider()
* \see providerId()
*/
void setProviderId( const QString &provider ) { mProviderId = provider; }

Expand Down

0 comments on commit 95ec307

Please sign in to comment.