Skip to content

Commit 81b475d

Browse files
committed
Adjust version number
1 parent 37b0d4c commit 81b475d

15 files changed

+20
-20
lines changed

python/gui/editorwidgets/core/qgssearchwidgetwrapper.sip

+3-3
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class QgsSearchWidgetWrapper : QgsWidgetWrapper
169169
If in SearchMode returns a quoted field identifier.
170170
If in AggregateSearchMode returns an appropriate aggregate expression.
171171

172-
.. versionadded:: 3.2
172+
.. versionadded:: 3.0
173173
:rtype: str
174174
%End
175175

@@ -178,7 +178,7 @@ class QgsSearchWidgetWrapper : QgsWidgetWrapper
178178
If in AggregateSearch mode, which aggregate should be used to construct
179179
the filter expression. Is a Null String if none.
180180

181-
.. versionadded:: 3.2
181+
.. versionadded:: 3.0
182182
:rtype: str
183183
%End
184184

@@ -187,7 +187,7 @@ class QgsSearchWidgetWrapper : QgsWidgetWrapper
187187
If in AggregateSearch mode, which aggregate should be used to construct
188188
the filter expression. Is a Null String if none.
189189

190-
.. versionadded:: 3.2
190+
.. versionadded:: 3.0
191191
%End
192192

193193
public slots:

python/gui/editorwidgets/qgsrelationaggregatesearchwidgetwrapper.sip

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class QgsRelationAggregateSearchWidgetWrapper : QgsSearchWidgetWrapper
1818
For each attribute of the child, an additional QgsAggregateToolButton will be shown
1919
to determine how the values should be aggregated for searching.
2020

21-
.. versionadded:: 3.2
21+
.. versionadded:: 3.0
2222
%End
2323

2424
%TypeHeaderCode

python/gui/editorwidgets/qgsrelationwidgetwrapper.sip

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class QgsRelationWidgetWrapper : QgsWidgetWrapper
7575
%Docstring
7676
The relation for which this wrapper is created.
7777

78-
.. versionadded:: 3.2
78+
.. versionadded:: 3.0
7979
:rtype: QgsRelation
8080
%End
8181

python/gui/qgsaggregatetoolbutton.sip

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class QgsAggregateToolButton : QToolButton
1616
Offers a toolbutton to choose between different aggregate functions.
1717
Functions are filtered based on the type.
1818

19-
.. versionadded:: 3.2
19+
.. versionadded:: 3.0
2020
%End
2121

2222
%TypeHeaderCode

python/gui/qgsattributeform.sip

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class QgsAttributeForm : QWidget
130130
In this case it will return a combined expression according to the chosen filters
131131
on all attribute widgets.
132132

133-
.. versionadded:: 3.2
133+
.. versionadded:: 3.0
134134
:rtype: str
135135
%End
136136

python/gui/qgsattributeformrelationeditorwidget.sip

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class QgsAttributeFormRelationEditorWidget : QgsAttributeFormWidget
1616

1717
Widget to show for child relations on an attribute form.
1818

19-
.. versionadded:: 3.2
19+
.. versionadded:: 3.0
2020
%End
2121

2222
%TypeHeaderCode

python/gui/qgsattributeformwidget.sip

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class QgsAttributeFormWidget : QWidget /Abstract/
1616
Base class for all widgets shown on a QgsAttributeForm.
1717
Consists of the widget which is visible in edit mode as well as the widget visible in search mode.
1818

19-
.. versionadded:: 3.2
19+
.. versionadded:: 3.0
2020
%End
2121

2222
%TypeHeaderCode

src/core/qgsaggregatecalculator.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class CORE_EXPORT QgsAggregateCalculator
4646
/**
4747
* Structured information about the available aggregates.
4848
*
49-
* \since QGIS 3.2
49+
* \since QGIS 3.0
5050
*/
5151
struct AggregateInfo
5252
{

src/gui/editorwidgets/core/qgssearchwidgetwrapper.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -187,23 +187,23 @@ class GUI_EXPORT QgsSearchWidgetWrapper : public QgsWidgetWrapper
187187
* If in SearchMode returns a quoted field identifier.
188188
* If in AggregateSearchMode returns an appropriate aggregate expression.
189189
*
190-
* \since QGIS 3.2
190+
* \since QGIS 3.0
191191
*/
192192
QString createFieldIdentifier() const;
193193

194194
/**
195195
* If in AggregateSearch mode, which aggregate should be used to construct
196196
* the filter expression. Is a Null String if none.
197197
*
198-
* \since QGIS 3.2
198+
* \since QGIS 3.0
199199
*/
200200
QString aggregate() const;
201201

202202
/**
203203
* If in AggregateSearch mode, which aggregate should be used to construct
204204
* the filter expression. Is a Null String if none.
205205
*
206-
* \since QGIS 3.2
206+
* \since QGIS 3.0
207207
*/
208208
void setAggregate( const QString &aggregate );
209209

src/gui/editorwidgets/qgsrelationaggregatesearchwidgetwrapper.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class QgsRelationWidgetWrapper;
3030
* For each attribute of the child, an additional QgsAggregateToolButton will be shown
3131
* to determine how the values should be aggregated for searching.
3232
*
33-
* \since QGIS 3.2
33+
* \since QGIS 3.0
3434
*/
3535
class GUI_EXPORT QgsRelationAggregateSearchWidgetWrapper : public QgsSearchWidgetWrapper
3636
{

src/gui/editorwidgets/qgsrelationwidgetwrapper.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class GUI_EXPORT QgsRelationWidgetWrapper : public QgsWidgetWrapper
8282
/**
8383
* The relation for which this wrapper is created.
8484
*
85-
* \since QGIS 3.2
85+
* \since QGIS 3.0
8686
*/
8787
QgsRelation relation() const;
8888

src/gui/qgsaggregatetoolbutton.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* Offers a toolbutton to choose between different aggregate functions.
2929
* Functions are filtered based on the type.
3030
*
31-
* \since QGIS 3.2
31+
* \since QGIS 3.0
3232
*/
3333
class GUI_EXPORT QgsAggregateToolButton : public QToolButton
3434
{

src/gui/qgsattributeform.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class GUI_EXPORT QgsAttributeForm : public QWidget
5454
will add a new feature when the form is accepted. */
5555
MultiEditMode, //!< Multi edit mode, for editing fields of multiple features at once
5656
SearchMode, //!< Form values are used for searching/filtering the layer
57-
AggregateSearchMode, //!< Form is in aggregate search mode, show each widget in this mode \since QGIS 3.2
57+
AggregateSearchMode, //!< Form is in aggregate search mode, show each widget in this mode \since QGIS 3.0
5858
};
5959

6060
//! Filter types
@@ -166,7 +166,7 @@ class GUI_EXPORT QgsAttributeForm : public QWidget
166166
* In this case it will return a combined expression according to the chosen filters
167167
* on all attribute widgets.
168168
*
169-
* \since QGIS 3.2
169+
* \since QGIS 3.0
170170
*/
171171
QString aggregateFilter() const;
172172

src/gui/qgsattributeformrelationeditorwidget.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class QgsRelationAggregateSearchWidgetWrapper;
2828
*
2929
* Widget to show for child relations on an attribute form.
3030
*
31-
* \since QGIS 3.2
31+
* \since QGIS 3.0
3232
*/
3333
class GUI_EXPORT QgsAttributeFormRelationEditorWidget : public QgsAttributeFormWidget
3434
{

src/gui/qgsattributeformwidget.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class QgsSearchWidgetToolButton;
1919
* Base class for all widgets shown on a QgsAttributeForm.
2020
* Consists of the widget which is visible in edit mode as well as the widget visible in search mode.
2121
*
22-
* \since QGIS 3.2
22+
* \since QGIS 3.0
2323
*/
2424
class GUI_EXPORT QgsAttributeFormWidget : public QWidget // SIP_ABSTRACT
2525
{

0 commit comments

Comments
 (0)