Skip to content

Commit ccd9cc8

Browse files
committedSep 14, 2016
Undeprecate provider CreateAttributeIndex capability
This capability is still used in QGIS and has value for plugins
1 parent 5c1151c commit ccd9cc8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎python/core/qgsvectordataprovider.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class QgsVectorDataProvider : QgsDataProvider
3131
SelectAtId,
3232
/** Allows modifications of geometries */
3333
ChangeGeometries,
34-
/** DEPRECATED - do not use */
34+
/** Can create indexes on provider's fields */
3535
CreateAttributeIndex,
3636
/** Allows user to select encoding */
3737
SelectEncoding,

‎src/core/qgsvectordataprovider.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class CORE_EXPORT QgsVectorDataProvider : public QgsDataProvider
8080
ChangeGeometries = 1 << 8,
8181
/** Allows user to select encoding */
8282
SelectEncoding = 1 << 13,
83-
/** DEPRECATED - do not use */
83+
/** Can create indexes on provider's fields */
8484
CreateAttributeIndex = 1 << 12,
8585
/** Supports simplification of geometries on provider side according to a distance tolerance */
8686
SimplifyGeometries = 1 << 14,

0 commit comments

Comments
 (0)
Please sign in to comment.