Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1960 from manisandro/nitpick
Don't store QGis::WkbType in int
  • Loading branch information
m-kuhn committed Mar 24, 2015
2 parents 25e4e4d + d2d1d51 commit 4e6ba7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsvectorlayer.cpp
Expand Up @@ -593,7 +593,7 @@ QGis::GeometryType QgsVectorLayer::geometryType() const
{
if ( mDataProvider )
{
int type = mDataProvider->geometryType();
QGis::WkbType type = mDataProvider->geometryType();
switch ( type )
{
case QGis::WKBPoint:
Expand Down

0 comments on commit 4e6ba7b

Please sign in to comment.