Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix version added string
  • Loading branch information
nyalldawson committed Jul 16, 2018
1 parent 68aae3a commit 7f9b0f8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
Expand Up @@ -19,7 +19,7 @@ Abstract base class for nodes contained within a QgsProcessingToolboxModel.

Not part of stable API and may change in future QGIS releases.

.. versionadded:: 3.2
.. versionadded:: 3.4
%End

%TypeHeaderCode
Expand Down Expand Up @@ -101,7 +101,7 @@ class QgsProcessingToolboxModelRecentNode : QgsProcessingToolboxModelNode
%Docstring
Processing toolbox model node corresponding to the recent algorithms group

.. versionadded:: 3.2
.. versionadded:: 3.4

.. warning::

Expand All @@ -127,7 +127,7 @@ class QgsProcessingToolboxModelProviderNode : QgsProcessingToolboxModelNode
%Docstring
Processing toolbox model node corresponding to a Processing provider.

.. versionadded:: 3.2
.. versionadded:: 3.4

.. warning::

Expand Down Expand Up @@ -164,7 +164,7 @@ class QgsProcessingToolboxModelGroupNode : QgsProcessingToolboxModelNode
%Docstring
Processing toolbox model node corresponding to a group of algorithms.

.. versionadded:: 3.2
.. versionadded:: 3.4

.. warning::

Expand Down Expand Up @@ -204,7 +204,7 @@ class QgsProcessingToolboxModelAlgorithmNode : QgsProcessingToolboxModelNode
%Docstring
Processing toolbox model node corresponding to an algorithm.

.. versionadded:: 3.2
.. versionadded:: 3.4

.. warning::

Expand Down Expand Up @@ -240,7 +240,7 @@ A model for providers and algorithms shown within the Processing toolbox.
See QgsProcessingToolboxProxyModel for a sorted, filterable version
of this model.

.. versionadded:: 3.2
.. versionadded:: 3.4
%End

%TypeHeaderCode
Expand Down Expand Up @@ -367,7 +367,7 @@ A sort/filter proxy model for providers and algorithms shown within the Processi
which automatically sorts the toolbox in a logical fashion and supports filtering
the results.

.. versionadded:: 3.2
.. versionadded:: 3.4
%End

%TypeHeaderCode
Expand Down
14 changes: 7 additions & 7 deletions src/gui/processing/qgsprocessingtoolboxmodel.h
Expand Up @@ -34,7 +34,7 @@ class QgsProcessingRecentAlgorithmLog;
* Abstract base class for nodes contained within a QgsProcessingToolboxModel.
* \warning Not part of stable API and may change in future QGIS releases.
* \ingroup gui
* \since QGIS 3.2
* \since QGIS 3.4
*/
class GUI_EXPORT QgsProcessingToolboxModelNode : public QObject
{
Expand Down Expand Up @@ -129,7 +129,7 @@ class GUI_EXPORT QgsProcessingToolboxModelNode : public QObject
/**
* Processing toolbox model node corresponding to the recent algorithms group
* \ingroup gui
* \since QGIS 3.2
* \since QGIS 3.4
* \warning Not part of stable API and may change in future QGIS releases.
*/
class GUI_EXPORT QgsProcessingToolboxModelRecentNode : public QgsProcessingToolboxModelNode
Expand All @@ -150,7 +150,7 @@ class GUI_EXPORT QgsProcessingToolboxModelRecentNode : public QgsProcessingToolb
/**
* Processing toolbox model node corresponding to a Processing provider.
* \ingroup gui
* \since QGIS 3.2
* \since QGIS 3.4
* \warning Not part of stable API and may change in future QGIS releases.
*/
class GUI_EXPORT QgsProcessingToolboxModelProviderNode : public QgsProcessingToolboxModelNode
Expand Down Expand Up @@ -187,7 +187,7 @@ class GUI_EXPORT QgsProcessingToolboxModelProviderNode : public QgsProcessingToo
/**
* Processing toolbox model node corresponding to a group of algorithms.
* \ingroup gui
* \since QGIS 3.2
* \since QGIS 3.4
* \warning Not part of stable API and may change in future QGIS releases.
*/
class GUI_EXPORT QgsProcessingToolboxModelGroupNode : public QgsProcessingToolboxModelNode
Expand Down Expand Up @@ -226,7 +226,7 @@ class GUI_EXPORT QgsProcessingToolboxModelGroupNode : public QgsProcessingToolbo
/**
* Processing toolbox model node corresponding to an algorithm.
* \ingroup gui
* \since QGIS 3.2
* \since QGIS 3.4
* \warning Not part of stable API and may change in future QGIS releases.
*/
class GUI_EXPORT QgsProcessingToolboxModelAlgorithmNode : public QgsProcessingToolboxModelNode
Expand Down Expand Up @@ -263,7 +263,7 @@ class GUI_EXPORT QgsProcessingToolboxModelAlgorithmNode : public QgsProcessingTo
* of this model.
*
* \ingroup gui
* \since QGIS 3.2
* \since QGIS 3.4
*/
class GUI_EXPORT QgsProcessingToolboxModel : public QAbstractItemModel
{
Expand Down Expand Up @@ -405,7 +405,7 @@ class GUI_EXPORT QgsProcessingToolboxModel : public QAbstractItemModel
* the results.
*
* \ingroup gui
* \since QGIS 3.2
* \since QGIS 3.4
*/
class GUI_EXPORT QgsProcessingToolboxProxyModel: public QSortFilterProxyModel
{
Expand Down

0 comments on commit 7f9b0f8

Please sign in to comment.