diff --git a/python/gui/editorwidgets/core/qgssearchwidgetwrapper.sip b/python/gui/editorwidgets/core/qgssearchwidgetwrapper.sip index 6a46c9c1b9e..66850f0578a 100644 --- a/python/gui/editorwidgets/core/qgssearchwidgetwrapper.sip +++ b/python/gui/editorwidgets/core/qgssearchwidgetwrapper.sip @@ -169,7 +169,7 @@ class QgsSearchWidgetWrapper : QgsWidgetWrapper If in SearchMode returns a quoted field identifier. If in AggregateSearchMode returns an appropriate aggregate expression. -.. versionadded:: 3.2 +.. versionadded:: 3.0 :rtype: str %End @@ -178,7 +178,7 @@ class QgsSearchWidgetWrapper : QgsWidgetWrapper If in AggregateSearch mode, which aggregate should be used to construct the filter expression. Is a Null String if none. -.. versionadded:: 3.2 +.. versionadded:: 3.0 :rtype: str %End @@ -187,7 +187,7 @@ class QgsSearchWidgetWrapper : QgsWidgetWrapper If in AggregateSearch mode, which aggregate should be used to construct the filter expression. Is a Null String if none. -.. versionadded:: 3.2 +.. versionadded:: 3.0 %End public slots: diff --git a/python/gui/editorwidgets/qgsrelationaggregatesearchwidgetwrapper.sip b/python/gui/editorwidgets/qgsrelationaggregatesearchwidgetwrapper.sip index 8e3bba8778b..c7111cc34e0 100644 --- a/python/gui/editorwidgets/qgsrelationaggregatesearchwidgetwrapper.sip +++ b/python/gui/editorwidgets/qgsrelationaggregatesearchwidgetwrapper.sip @@ -18,7 +18,7 @@ class QgsRelationAggregateSearchWidgetWrapper : QgsSearchWidgetWrapper For each attribute of the child, an additional QgsAggregateToolButton will be shown to determine how the values should be aggregated for searching. -.. versionadded:: 3.2 +.. versionadded:: 3.0 %End %TypeHeaderCode diff --git a/python/gui/editorwidgets/qgsrelationwidgetwrapper.sip b/python/gui/editorwidgets/qgsrelationwidgetwrapper.sip index d26b5e9350a..8e25a8d6624 100644 --- a/python/gui/editorwidgets/qgsrelationwidgetwrapper.sip +++ b/python/gui/editorwidgets/qgsrelationwidgetwrapper.sip @@ -75,7 +75,7 @@ class QgsRelationWidgetWrapper : QgsWidgetWrapper %Docstring The relation for which this wrapper is created. -.. versionadded:: 3.2 +.. versionadded:: 3.0 :rtype: QgsRelation %End diff --git a/python/gui/qgsaggregatetoolbutton.sip b/python/gui/qgsaggregatetoolbutton.sip index 5c627aa2f54..6a9c9295cf1 100644 --- a/python/gui/qgsaggregatetoolbutton.sip +++ b/python/gui/qgsaggregatetoolbutton.sip @@ -16,7 +16,7 @@ class QgsAggregateToolButton : QToolButton Offers a toolbutton to choose between different aggregate functions. Functions are filtered based on the type. -.. versionadded:: 3.2 +.. versionadded:: 3.0 %End %TypeHeaderCode diff --git a/python/gui/qgsattributeform.sip b/python/gui/qgsattributeform.sip index 32f3965a4f8..43efbb53d0e 100644 --- a/python/gui/qgsattributeform.sip +++ b/python/gui/qgsattributeform.sip @@ -130,7 +130,7 @@ class QgsAttributeForm : QWidget In this case it will return a combined expression according to the chosen filters on all attribute widgets. -.. versionadded:: 3.2 +.. versionadded:: 3.0 :rtype: str %End diff --git a/python/gui/qgsattributeformrelationeditorwidget.sip b/python/gui/qgsattributeformrelationeditorwidget.sip index 7c2b4abbc50..711b82a3cc9 100644 --- a/python/gui/qgsattributeformrelationeditorwidget.sip +++ b/python/gui/qgsattributeformrelationeditorwidget.sip @@ -16,7 +16,7 @@ class QgsAttributeFormRelationEditorWidget : QgsAttributeFormWidget Widget to show for child relations on an attribute form. -.. versionadded:: 3.2 +.. versionadded:: 3.0 %End %TypeHeaderCode diff --git a/python/gui/qgsattributeformwidget.sip b/python/gui/qgsattributeformwidget.sip index 2eb394a8bf6..40dad7da187 100644 --- a/python/gui/qgsattributeformwidget.sip +++ b/python/gui/qgsattributeformwidget.sip @@ -16,7 +16,7 @@ class QgsAttributeFormWidget : QWidget /Abstract/ Base class for all widgets shown on a QgsAttributeForm. Consists of the widget which is visible in edit mode as well as the widget visible in search mode. -.. versionadded:: 3.2 +.. versionadded:: 3.0 %End %TypeHeaderCode diff --git a/src/core/qgsaggregatecalculator.h b/src/core/qgsaggregatecalculator.h index 4764fa25810..57f65bc041a 100644 --- a/src/core/qgsaggregatecalculator.h +++ b/src/core/qgsaggregatecalculator.h @@ -46,7 +46,7 @@ class CORE_EXPORT QgsAggregateCalculator /** * Structured information about the available aggregates. * - * \since QGIS 3.2 + * \since QGIS 3.0 */ struct AggregateInfo { diff --git a/src/gui/editorwidgets/core/qgssearchwidgetwrapper.h b/src/gui/editorwidgets/core/qgssearchwidgetwrapper.h index 3b90afb4e86..c52b2fad257 100644 --- a/src/gui/editorwidgets/core/qgssearchwidgetwrapper.h +++ b/src/gui/editorwidgets/core/qgssearchwidgetwrapper.h @@ -187,7 +187,7 @@ class GUI_EXPORT QgsSearchWidgetWrapper : public QgsWidgetWrapper * If in SearchMode returns a quoted field identifier. * If in AggregateSearchMode returns an appropriate aggregate expression. * - * \since QGIS 3.2 + * \since QGIS 3.0 */ QString createFieldIdentifier() const; @@ -195,7 +195,7 @@ class GUI_EXPORT QgsSearchWidgetWrapper : public QgsWidgetWrapper * If in AggregateSearch mode, which aggregate should be used to construct * the filter expression. Is a Null String if none. * - * \since QGIS 3.2 + * \since QGIS 3.0 */ QString aggregate() const; @@ -203,7 +203,7 @@ class GUI_EXPORT QgsSearchWidgetWrapper : public QgsWidgetWrapper * If in AggregateSearch mode, which aggregate should be used to construct * the filter expression. Is a Null String if none. * - * \since QGIS 3.2 + * \since QGIS 3.0 */ void setAggregate( const QString &aggregate ); diff --git a/src/gui/editorwidgets/qgsrelationaggregatesearchwidgetwrapper.h b/src/gui/editorwidgets/qgsrelationaggregatesearchwidgetwrapper.h index 45f8de33b6c..e71985597e7 100644 --- a/src/gui/editorwidgets/qgsrelationaggregatesearchwidgetwrapper.h +++ b/src/gui/editorwidgets/qgsrelationaggregatesearchwidgetwrapper.h @@ -30,7 +30,7 @@ class QgsRelationWidgetWrapper; * For each attribute of the child, an additional QgsAggregateToolButton will be shown * to determine how the values should be aggregated for searching. * - * \since QGIS 3.2 + * \since QGIS 3.0 */ class GUI_EXPORT QgsRelationAggregateSearchWidgetWrapper : public QgsSearchWidgetWrapper { diff --git a/src/gui/editorwidgets/qgsrelationwidgetwrapper.h b/src/gui/editorwidgets/qgsrelationwidgetwrapper.h index d44c3c7699e..996400551ed 100644 --- a/src/gui/editorwidgets/qgsrelationwidgetwrapper.h +++ b/src/gui/editorwidgets/qgsrelationwidgetwrapper.h @@ -82,7 +82,7 @@ class GUI_EXPORT QgsRelationWidgetWrapper : public QgsWidgetWrapper /** * The relation for which this wrapper is created. * - * \since QGIS 3.2 + * \since QGIS 3.0 */ QgsRelation relation() const; diff --git a/src/gui/qgsaggregatetoolbutton.h b/src/gui/qgsaggregatetoolbutton.h index 3ca78609815..28ab44b5015 100644 --- a/src/gui/qgsaggregatetoolbutton.h +++ b/src/gui/qgsaggregatetoolbutton.h @@ -28,7 +28,7 @@ * Offers a toolbutton to choose between different aggregate functions. * Functions are filtered based on the type. * - * \since QGIS 3.2 + * \since QGIS 3.0 */ class GUI_EXPORT QgsAggregateToolButton : public QToolButton { diff --git a/src/gui/qgsattributeform.h b/src/gui/qgsattributeform.h index e7cd764ef21..1894d6f4305 100644 --- a/src/gui/qgsattributeform.h +++ b/src/gui/qgsattributeform.h @@ -54,7 +54,7 @@ class GUI_EXPORT QgsAttributeForm : public QWidget will add a new feature when the form is accepted. */ MultiEditMode, //!< Multi edit mode, for editing fields of multiple features at once SearchMode, //!< Form values are used for searching/filtering the layer - AggregateSearchMode, //!< Form is in aggregate search mode, show each widget in this mode \since QGIS 3.2 + AggregateSearchMode, //!< Form is in aggregate search mode, show each widget in this mode \since QGIS 3.0 }; //! Filter types @@ -166,7 +166,7 @@ class GUI_EXPORT QgsAttributeForm : public QWidget * In this case it will return a combined expression according to the chosen filters * on all attribute widgets. * - * \since QGIS 3.2 + * \since QGIS 3.0 */ QString aggregateFilter() const; diff --git a/src/gui/qgsattributeformrelationeditorwidget.h b/src/gui/qgsattributeformrelationeditorwidget.h index 5540612bd68..ff8391fd4af 100644 --- a/src/gui/qgsattributeformrelationeditorwidget.h +++ b/src/gui/qgsattributeformrelationeditorwidget.h @@ -28,7 +28,7 @@ class QgsRelationAggregateSearchWidgetWrapper; * * Widget to show for child relations on an attribute form. * - * \since QGIS 3.2 + * \since QGIS 3.0 */ class GUI_EXPORT QgsAttributeFormRelationEditorWidget : public QgsAttributeFormWidget { diff --git a/src/gui/qgsattributeformwidget.h b/src/gui/qgsattributeformwidget.h index ced9bf5d8b3..1fbe4dc6814 100644 --- a/src/gui/qgsattributeformwidget.h +++ b/src/gui/qgsattributeformwidget.h @@ -19,7 +19,7 @@ class QgsSearchWidgetToolButton; * Base class for all widgets shown on a QgsAttributeForm. * Consists of the widget which is visible in edit mode as well as the widget visible in search mode. * - * \since QGIS 3.2 + * \since QGIS 3.0 */ class GUI_EXPORT QgsAttributeFormWidget : public QWidget // SIP_ABSTRACT {