Skip to content

Commit 3cb1be2

Browse files
committed
Update some version numbers in API docs
1 parent a180edc commit 3cb1be2

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

python/analysis/auto_generated/raster/qgsrastercalcnode.sip.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ Returns a string representation of the expression
8080

8181
:param cStyle: if true operators will follow C syntax
8282

83-
.. versionadded:: 3.6
83+
.. versionadded:: 3.4.4
8484
%End
8585

8686
QList<const QgsRasterCalcNode *> findNodes( const QgsRasterCalcNode::Type type ) const;
8787
%Docstring
8888
Returns a list of nodes of a specific ``type``
8989

90-
.. versionadded:: 3.6
90+
.. versionadded:: 3.4.4
9191
%End
9292

9393
static QgsRasterCalcNode *parseRasterCalcString( const QString &str, QString &parserErrorMsg ) /Factory/;

python/core/auto_generated/geometry/qgsgeometrycollection.sip.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ Returns the geometry at the specified ``index``. An IndexError will be raised if
230230
Indexes can be less than 0, in which case they correspond to geometries from the end of the collect. E.g. an index of -1
231231
corresponds to the last geometry in the collection.
232232

233-
.. versionadded:: 3.6
233+
.. versionadded:: 3.4.4
234234
%End
235235
%MethodCode
236236
const int count = sipCpp->numGeometries();
@@ -256,7 +256,7 @@ Deletes the geometry at the specified ``index``. A geometry at the ``index`` mus
256256
Indexes can be less than 0, in which case they correspond to geometries from the end of the collection. E.g. an index of -1
257257
corresponds to the last geometry in the collection.
258258

259-
.. versionadded:: 3.6
259+
.. versionadded:: 3.4.4
260260
%End
261261
%MethodCode
262262
const int count = sipCpp->numGeometries();
@@ -275,7 +275,7 @@ corresponds to the last geometry in the collection.
275275
%Docstring
276276
Iterates through all geometries in the collection.
277277

278-
.. versionadded:: 3.6
278+
.. versionadded:: 3.4.4
279279
%End
280280
%MethodCode
281281
sipRes = sipConvertFromNewType( new QgsGeometryPartIterator( sipCpp ), sipType_QgsGeometryPartIterator, Py_None );

python/core/auto_generated/geometry/qgslinestring.sip.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ Returns the point at the specified ``index``. An IndexError will be raised if no
515515
Indexes can be less than 0, in which case they correspond to positions from the end of the line. E.g. an index of -1
516516
corresponds to the last point in the line.
517517

518-
.. versionadded:: 3.6
518+
.. versionadded:: 3.4.4
519519
%End
520520
%MethodCode
521521
const int count = sipCpp->numPoints();
@@ -542,7 +542,7 @@ Sets the point at the specified ``index``. A point at the ``index`` must already
542542
Indexes can be less than 0, in which case they correspond to positions from the end of the line. E.g. an index of -1
543543
corresponds to the last point in the line.
544544

545-
.. versionadded:: 3.6
545+
.. versionadded:: 3.4.4
546546
%End
547547
%MethodCode
548548
const int count = sipCpp->numPoints();
@@ -572,7 +572,7 @@ Deletes the vertex at the specified ``index``. A point at the ``index`` must alr
572572
Indexes can be less than 0, in which case they correspond to positions from the end of the line. E.g. an index of -1
573573
corresponds to the last point in the line.
574574

575-
.. versionadded:: 3.6
575+
.. versionadded:: 3.4.4
576576
%End
577577
%MethodCode
578578
const int count = sipCpp->numPoints();

src/analysis/raster/qgsrastercalcnode.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@ class ANALYSIS_EXPORT QgsRasterCalcNode
109109
/**
110110
* Returns a string representation of the expression
111111
* \param cStyle if true operators will follow C syntax
112-
* \since QGIS 3.6
112+
* \since QGIS 3.4.4
113113
*/
114114
QString toString( bool cStyle = false ) const;
115115

116116
/**
117117
* Returns a list of nodes of a specific \a type
118-
* \since QGIS 3.6
118+
* \since QGIS 3.4.4
119119
*/
120120
QList<const QgsRasterCalcNode *> findNodes( const QgsRasterCalcNode::Type type ) const;
121121

src/core/geometry/qgsgeometrycollection.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ class CORE_EXPORT QgsGeometryCollection: public QgsAbstractGeometry
242242
* Indexes can be less than 0, in which case they correspond to geometries from the end of the collect. E.g. an index of -1
243243
* corresponds to the last geometry in the collection.
244244
*
245-
* \since QGIS 3.6
245+
* \since QGIS 3.4.4
246246
*/
247247
SIP_PYOBJECT __getitem__( int index ) SIP_TYPEHINT( QgsAbstractGeometry );
248248
% MethodCode
@@ -268,7 +268,7 @@ class CORE_EXPORT QgsGeometryCollection: public QgsAbstractGeometry
268268
* Indexes can be less than 0, in which case they correspond to geometries from the end of the collection. E.g. an index of -1
269269
* corresponds to the last geometry in the collection.
270270
*
271-
* \since QGIS 3.6
271+
* \since QGIS 3.4.4
272272
*/
273273
void __delitem__( int index );
274274
% MethodCode
@@ -287,7 +287,7 @@ class CORE_EXPORT QgsGeometryCollection: public QgsAbstractGeometry
287287
/**
288288
* Iterates through all geometries in the collection.
289289
*
290-
* \since QGIS 3.6
290+
* \since QGIS 3.4.4
291291
*/
292292
SIP_PYOBJECT __iter__() SIP_TYPEHINT( QgsGeometryPartIterator );
293293
% MethodCode

src/core/geometry/qgslinestring.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ class CORE_EXPORT QgsLineString: public QgsCurve
648648
* Indexes can be less than 0, in which case they correspond to positions from the end of the line. E.g. an index of -1
649649
* corresponds to the last point in the line.
650650
*
651-
* \since QGIS 3.6
651+
* \since QGIS 3.4.4
652652
*/
653653
SIP_PYOBJECT __getitem__( int index ) SIP_TYPEHINT( QgsPoint );
654654
% MethodCode
@@ -675,7 +675,7 @@ class CORE_EXPORT QgsLineString: public QgsCurve
675675
* Indexes can be less than 0, in which case they correspond to positions from the end of the line. E.g. an index of -1
676676
* corresponds to the last point in the line.
677677
*
678-
* \since QGIS 3.6
678+
* \since QGIS 3.4.4
679679
*/
680680
void __setitem__( int index, const QgsPoint &point );
681681
% MethodCode
@@ -705,7 +705,7 @@ class CORE_EXPORT QgsLineString: public QgsCurve
705705
* Indexes can be less than 0, in which case they correspond to positions from the end of the line. E.g. an index of -1
706706
* corresponds to the last point in the line.
707707
*
708-
* \since QGIS 3.6
708+
* \since QGIS 3.4.4
709709
*/
710710
void __delitem__( int index );
711711
% MethodCode

src/core/qgsopenclutils.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class CORE_EXPORT QgsOpenClUtils
143143
/**
144144
* Returns the active platform OpenCL version string (e.g. 1.1, 2.0 etc.)
145145
* or a blank string if there is no active platform.
146-
* \since QGIS 3.6
146+
* \since QGIS 3.4.4
147147
*/
148148
static QString activePlatformVersion( );
149149

@@ -196,7 +196,7 @@ class CORE_EXPORT QgsOpenClUtils
196196
* Build the program from \a source in the given \a context and depending on \a exceptionBehavior
197197
* can throw or catch the exceptions
198198
* \return the built program
199-
* \deprecated since QGIS 3.6
199+
* \deprecated since QGIS 3.4.4
200200
*/
201201
Q_DECL_DEPRECATED static cl::Program buildProgram( const cl::Context &context, const QString &source, ExceptionBehavior exceptionBehavior = Catch );
202202

0 commit comments

Comments
 (0)