This commit is contained in:
Denis Rouzaud 2017-06-07 19:43:45 +02:00
parent 67b01dee0c
commit 6606d463d3
2 changed files with 5 additions and 5 deletions

View File

@ -189,8 +189,8 @@ class QgsProcessingParameterDefinition
enum LayerType
{
TypeAny
TypeVectorAny
TypeAny,
TypeVectorAny,
TypeVectorPoint,
TypeVectorLine,
TypeVectorPolygon,
@ -1091,7 +1091,7 @@ class QgsProcessingParameterTableField : QgsProcessingParameterDefinition
enum DataType
{
Any
Any,
Numeric,
String,
DateTime

View File

@ -61,9 +61,9 @@ Bitmask of all provider's editing capabilities
enum FeatureCountState
{
//! Feature
Uncounted
Uncounted,
//! Provider
UnknownCount
UnknownCount,
};
QgsVectorDataProvider( const QString &uri = QString() );