Skip to content

Commit

Permalink
fix enum
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Jun 7, 2017
1 parent 67b01de commit 6606d46
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions python/core/processing/qgsprocessingparameters.sip
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ class QgsProcessingParameterDefinition

enum LayerType
{
TypeAny
TypeVectorAny
TypeAny,
TypeVectorAny,
TypeVectorPoint,
TypeVectorLine,
TypeVectorPolygon,
Expand Down Expand Up @@ -1091,7 +1091,7 @@ class QgsProcessingParameterTableField : QgsProcessingParameterDefinition

enum DataType
{
Any
Any,
Numeric,
String,
DateTime
Expand Down
4 changes: 2 additions & 2 deletions python/core/qgsvectordataprovider.sip
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ Bitmask of all provider's editing capabilities
enum FeatureCountState
{
//! Feature
Uncounted
Uncounted,
//! Provider
UnknownCount
UnknownCount,
};

QgsVectorDataProvider( const QString &uri = QString() );
Expand Down

0 comments on commit 6606d46

Please sign in to comment.