Skip to content

Commit

Permalink
Fix version added strings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Dec 2, 2018
1 parent 13d0ba2 commit 9190d97
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion python/core/auto_generated/geometry/qgscurve.sip.in
Expand Up @@ -243,7 +243,7 @@ Returns the curve's orientation, e.g. clockwise or counter-clockwise.

The result is not predictable for non-closed curves.

.. versionadded:: 3.6
.. versionadded:: 3.4.3
%End


Expand Down
2 changes: 1 addition & 1 deletion python/core/auto_generated/geometry/qgscurvepolygon.sip.in
Expand Up @@ -144,7 +144,7 @@ bounded by the polygon is to the right of the boundary. In particular, the exter
ring is oriented in a clockwise direction and the interior rings in a counter-clockwise
direction.

.. versionadded:: 3.6
.. versionadded:: 3.4.3
%End

virtual void draw( QPainter &p ) const;
Expand Down
2 changes: 1 addition & 1 deletion python/core/auto_generated/geometry/qgsgeometry.sip.in
Expand Up @@ -1570,7 +1570,7 @@ Forces geometries to respect the Right-Hand-Rule, in which the area that is boun
is to the right of the boundary. In particular, the exterior ring is oriented in a clockwise direction
and the interior rings in a counter-clockwise direction.

.. versionadded:: 3.6
.. versionadded:: 3.4.3
%End

class Error
Expand Down
4 changes: 2 additions & 2 deletions python/core/auto_generated/symbology/qgssymbol.sip.in
Expand Up @@ -382,7 +382,7 @@ direction.

.. seealso:: :py:func:`forceRHR`

.. versionadded:: 3.6
.. versionadded:: 3.4.3
%End

bool forceRHR() const;
Expand All @@ -395,7 +395,7 @@ direction.

.. seealso:: :py:func:`setForceRHR`

.. versionadded:: 3.6
.. versionadded:: 3.4.3
%End

QSet<QString> usedAttributes( const QgsRenderContext &context ) const;
Expand Down
4 changes: 2 additions & 2 deletions python/core/auto_generated/symbology/qgssymbollayer.sip.in
Expand Up @@ -893,7 +893,7 @@ for a polygon.

.. seealso:: :py:func:`setRingFilter`

.. versionadded:: 3.6
.. versionadded:: 3.4.3
%End

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

.. seealso:: :py:func:`ringFilter`

.. versionadded:: 3.6
.. versionadded:: 3.4.3
%End

protected:
Expand Down
2 changes: 1 addition & 1 deletion src/core/geometry/qgscurve.h
Expand Up @@ -225,7 +225,7 @@ class CORE_EXPORT QgsCurve: public QgsAbstractGeometry
*
* \warning The result is not predictable for non-closed curves.
*
* \since QGIS 3.6
* \since QGIS 3.4.3
*/
Orientation orientation() const;

Expand Down
2 changes: 1 addition & 1 deletion src/core/geometry/qgscurvepolygon.h
Expand Up @@ -140,7 +140,7 @@ class CORE_EXPORT QgsCurvePolygon: public QgsSurface
* ring is oriented in a clockwise direction and the interior rings in a counter-clockwise
* direction.
*
* \since QGIS 3.6
* \since QGIS 3.4.3
*/
void forceRHR();

Expand Down
2 changes: 1 addition & 1 deletion src/core/geometry/qgsgeometry.h
Expand Up @@ -1555,7 +1555,7 @@ class CORE_EXPORT QgsGeometry
* is to the right of the boundary. In particular, the exterior ring is oriented in a clockwise direction
* and the interior rings in a counter-clockwise direction.
*
* \since QGIS 3.6
* \since QGIS 3.4.3
*/
QgsGeometry forceRHR() const;

Expand Down
4 changes: 2 additions & 2 deletions src/core/symbology/qgssymbol.h
Expand Up @@ -386,7 +386,7 @@ class CORE_EXPORT QgsSymbol
* ring is oriented in a clockwise direction and the interior rings in a counter-clockwise
* direction.
* \see forceRHR()
* \since QGIS 3.6
* \since QGIS 3.4.3
*/
void setForceRHR( bool force ) { mForceRHR = force; }

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

Expand Down
4 changes: 2 additions & 2 deletions src/core/symbology/qgssymbollayer.h
Expand Up @@ -833,7 +833,7 @@ class CORE_EXPORT QgsLineSymbolLayer : public QgsSymbolLayer
* for a polygon.
*
* \see setRingFilter()
* \since QGIS 3.6
* \since QGIS 3.4.3
*/
RenderRingFilter ringFilter() const;

Expand All @@ -845,7 +845,7 @@ class CORE_EXPORT QgsLineSymbolLayer : public QgsSymbolLayer
* for a polygon.
*
* \see ringFilter()
* \since QGIS 3.6
* \since QGIS 3.4.3
*/
void setRingFilter( QgsLineSymbolLayer::RenderRingFilter filter );

Expand Down

0 comments on commit 9190d97

Please sign in to comment.