Skip to content

Commit

Permalink
Undeprecate provider CreateAttributeIndex capability
Browse files Browse the repository at this point in the history
This capability is still used in QGIS and has value for
plugins
  • Loading branch information
nyalldawson committed Sep 14, 2016
1 parent 5c1151c commit ccd9cc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/core/qgsvectordataprovider.sip
Expand Up @@ -31,7 +31,7 @@ class QgsVectorDataProvider : QgsDataProvider
SelectAtId,
/** Allows modifications of geometries */
ChangeGeometries,
/** DEPRECATED - do not use */
/** Can create indexes on provider's fields */
CreateAttributeIndex,
/** Allows user to select encoding */
SelectEncoding,
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsvectordataprovider.h
Expand Up @@ -80,7 +80,7 @@ class CORE_EXPORT QgsVectorDataProvider : public QgsDataProvider
ChangeGeometries = 1 << 8,
/** Allows user to select encoding */
SelectEncoding = 1 << 13,
/** DEPRECATED - do not use */
/** Can create indexes on provider's fields */
CreateAttributeIndex = 1 << 12,
/** Supports simplification of geometries on provider side according to a distance tolerance */
SimplifyGeometries = 1 << 14,
Expand Down

0 comments on commit ccd9cc8

Please sign in to comment.