Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't store QGis::WkbType in int
  • Loading branch information
manisandro committed Mar 23, 2015
1 parent 28a2bf9 commit d2d1d51
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 d2d1d51

Please sign in to comment.