Skip to content

Commit c4a0c47

Browse files
committed
Fix warnings
1 parent 1ad6e0b commit c4a0c47

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

src/core/fieldkit/qgsvaluemapfieldkit.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class CORE_EXPORT QgsValueMapFieldKit : public QgsFieldKit
2929

3030
QString representValue( QgsVectorLayer* layer, int fieldIndex, const QVariantMap& config, const QVariant& cache, const QVariant& value ) const override;
3131

32-
QVariant sortValue( QgsVectorLayer* layer, int fieldIndex, const QVariantMap& config, const QVariant& cache, const QVariant& value ) const;
32+
QVariant sortValue( QgsVectorLayer* layer, int fieldIndex, const QVariantMap& config, const QVariant& cache, const QVariant& value ) const override;
3333
};
3434

3535
#endif // QGSVALUEMAPFIELDKIT_H

src/core/qgsfieldkit.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ class QgsVectorLayer;
3232
* field kits for use within code should normally be obtained from there.
3333
*
3434
* This is an abstract base class and will always need to be subclassed.
35+
*
36+
* @Note added in QGIS 3.0
3537
*/
3638
class CORE_EXPORT QgsFieldKit
3739
{

src/core/qgsfieldkitregistry.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ class QgsFieldKit;
2727
* The QgsFieldKitRegistry manages registered classes of QgsFieldKit.
2828
* A reference to the QgsFieldKitRegistry can be obtained from
2929
* QgsApplication::fieldKitRegistry().
30+
*
31+
* @note Added in QGIS 3.0
3032
*/
3133
class CORE_EXPORT QgsFieldKitRegistry : public QObject
3234
{

0 commit comments

Comments
 (0)