Skip to content

Commit 093d53a

Browse files
committedMay 29, 2018
since 3.4
1 parent 2770f6c commit 093d53a

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed
 

‎src/core/qgstessellator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class QgsMultiPolygon;
3535
*
3636
* Optionally provides extrusion by adding triangles that serve as walls when extrusion height is non-zero.
3737
*
38-
* \since QGIS 3.2 (since QGIS 3.0 in QGIS_3D library)
38+
* \since QGIS 3.4 (since QGIS 3.0 in QGIS_3D library)
3939
*/
4040
class CORE_EXPORT QgsTessellator
4141
{

‎src/quickgui/qgsquickfeaturehighlight.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class QgsQuickMapSettings;
3232
*
3333
* \note QML Type: FeatureModelHighlight
3434
*
35-
* \since QGIS 3.2
35+
* \since QGIS 3.4
3636
*/
3737
class QUICK_EXPORT QgsQuickFeatureHighlight : public QQuickItem
3838
{

‎src/quickgui/qgsquickfeaturelayerpair.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class QgsVectorLayer;
3535
*
3636
* \note QML Type: QgsQuickFeatureLayerPair
3737
*
38-
* \since QGIS 3.2
38+
* \since QGIS 3.4
3939
*/
4040
class QUICK_EXPORT QgsQuickFeatureLayerPair
4141
{
@@ -82,7 +82,7 @@ class QUICK_EXPORT QgsQuickFeatureLayerPair
8282
//! \copydoc QgsQuickFeatureLayerPair::feature
8383
QgsFeature feature() const;
8484

85-
//! \copydoc QgsQuickFeatureLayerPair::isValid
85+
//! \copydoc QgsQuickFeatureLayerPair::valid
8686
bool isValid() const;
8787

8888
bool operator==( const QgsQuickFeatureLayerPair &other ) const;

‎src/quickgui/qgsquickhighlightsgnode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*
3232
* \note QML Type: not exported
3333
*
34-
* \since QGIS 3.2
34+
* \since QGIS 3.4
3535
*/
3636
class QUICK_EXPORT QgsQuickHighlightSGNode : public QSGNode
3737
{

‎src/quickgui/qgsquickidentifykit.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class QgsVectorLayer;
4141
*
4242
* \note QML Type: IdentifyKit
4343
*
44-
* \since QGIS 3.2
44+
* \since QGIS 3.4
4545
*/
4646
class QUICK_EXPORT QgsQuickIdentifyKit : public QObject
4747
{

‎src/quickgui/qgsquickmaptransform.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class QgsQuickMapSettings;
3232
*
3333
* \note QML Type: MapTransform
3434
*
35-
* \since QGIS 3.2
35+
* \since QGIS 3.4
3636
*/
3737
class QUICK_EXPORT QgsQuickMapTransform : public QQuickTransform
3838
{

‎src/quickgui/qgsquickutils.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@
2626
#include "qgsquickmapsettings.h"
2727
#include "qgsquickfeaturelayerpair.h"
2828
#include "qgis_quick.h"
29+
#include "qgsfeature.h"
2930

30-
31-
class QgsFeature;
3231
class QgsVectorLayer;
3332
class QgsCoordinateReferenceSystem;
3433

@@ -81,6 +80,8 @@ class QUICK_EXPORT QgsQuickUtils: public QObject
8180
* QgsQuickFeature factory for tuple of QgsFeature and QgsVectorLayer usud in QgsQUick library.
8281
* \param feature QgsFeature linked to new QgsQuickFeature instance.
8382
* \param layer QgsVectorLayer which the feature belongs to, optional.
83+
*
84+
* \since QGIS 3.4
8485
*/
8586
Q_INVOKABLE QgsQuickFeatureLayerPair featureFactory( const QgsFeature &feature, QgsVectorLayer *layer = nullptr ) const;
8687

0 commit comments

Comments
 (0)
Please sign in to comment.