Skip to content

Commit 9190d97

Browse files
committed
Fix version added strings
1 parent 13d0ba2 commit 9190d97

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ Returns the curve's orientation, e.g. clockwise or counter-clockwise.
243243

244244
The result is not predictable for non-closed curves.
245245

246-
.. versionadded:: 3.6
246+
.. versionadded:: 3.4.3
247247
%End
248248

249249

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ bounded by the polygon is to the right of the boundary. In particular, the exter
144144
ring is oriented in a clockwise direction and the interior rings in a counter-clockwise
145145
direction.
146146

147-
.. versionadded:: 3.6
147+
.. versionadded:: 3.4.3
148148
%End
149149

150150
virtual void draw( QPainter &p ) const;

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1570,7 +1570,7 @@ Forces geometries to respect the Right-Hand-Rule, in which the area that is boun
15701570
is to the right of the boundary. In particular, the exterior ring is oriented in a clockwise direction
15711571
and the interior rings in a counter-clockwise direction.
15721572

1573-
.. versionadded:: 3.6
1573+
.. versionadded:: 3.4.3
15741574
%End
15751575

15761576
class Error

python/core/auto_generated/symbology/qgssymbol.sip.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ direction.
382382

383383
.. seealso:: :py:func:`forceRHR`
384384

385-
.. versionadded:: 3.6
385+
.. versionadded:: 3.4.3
386386
%End
387387

388388
bool forceRHR() const;
@@ -395,7 +395,7 @@ direction.
395395

396396
.. seealso:: :py:func:`setForceRHR`
397397

398-
.. versionadded:: 3.6
398+
.. versionadded:: 3.4.3
399399
%End
400400

401401
QSet<QString> usedAttributes( const QgsRenderContext &context ) const;

python/core/auto_generated/symbology/qgssymbollayer.sip.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ for a polygon.
893893

894894
.. seealso:: :py:func:`setRingFilter`
895895

896-
.. versionadded:: 3.6
896+
.. versionadded:: 3.4.3
897897
%End
898898

899899
void setRingFilter( QgsLineSymbolLayer::RenderRingFilter filter );
@@ -906,7 +906,7 @@ for a polygon.
906906

907907
.. seealso:: :py:func:`ringFilter`
908908

909-
.. versionadded:: 3.6
909+
.. versionadded:: 3.4.3
910910
%End
911911

912912
protected:

src/core/geometry/qgscurve.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ class CORE_EXPORT QgsCurve: public QgsAbstractGeometry
225225
*
226226
* \warning The result is not predictable for non-closed curves.
227227
*
228-
* \since QGIS 3.6
228+
* \since QGIS 3.4.3
229229
*/
230230
Orientation orientation() const;
231231

src/core/geometry/qgscurvepolygon.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class CORE_EXPORT QgsCurvePolygon: public QgsSurface
140140
* ring is oriented in a clockwise direction and the interior rings in a counter-clockwise
141141
* direction.
142142
*
143-
* \since QGIS 3.6
143+
* \since QGIS 3.4.3
144144
*/
145145
void forceRHR();
146146

src/core/geometry/qgsgeometry.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1555,7 +1555,7 @@ class CORE_EXPORT QgsGeometry
15551555
* is to the right of the boundary. In particular, the exterior ring is oriented in a clockwise direction
15561556
* and the interior rings in a counter-clockwise direction.
15571557
*
1558-
* \since QGIS 3.6
1558+
* \since QGIS 3.4.3
15591559
*/
15601560
QgsGeometry forceRHR() const;
15611561

src/core/symbology/qgssymbol.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ class CORE_EXPORT QgsSymbol
386386
* ring is oriented in a clockwise direction and the interior rings in a counter-clockwise
387387
* direction.
388388
* \see forceRHR()
389-
* \since QGIS 3.6
389+
* \since QGIS 3.4.3
390390
*/
391391
void setForceRHR( bool force ) { mForceRHR = force; }
392392

@@ -397,7 +397,7 @@ class CORE_EXPORT QgsSymbol
397397
* ring is oriented in a clockwise direction and the interior rings in a counter-clockwise
398398
* direction.
399399
* \see setForceRHR()
400-
* \since QGIS 3.6
400+
* \since QGIS 3.4.3
401401
*/
402402
bool forceRHR() const { return mForceRHR; }
403403

src/core/symbology/qgssymbollayer.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ class CORE_EXPORT QgsLineSymbolLayer : public QgsSymbolLayer
833833
* for a polygon.
834834
*
835835
* \see setRingFilter()
836-
* \since QGIS 3.6
836+
* \since QGIS 3.4.3
837837
*/
838838
RenderRingFilter ringFilter() const;
839839

@@ -845,7 +845,7 @@ class CORE_EXPORT QgsLineSymbolLayer : public QgsSymbolLayer
845845
* for a polygon.
846846
*
847847
* \see ringFilter()
848-
* \since QGIS 3.6
848+
* \since QGIS 3.4.3
849849
*/
850850
void setRingFilter( QgsLineSymbolLayer::RenderRingFilter filter );
851851

0 commit comments

Comments
 (0)