Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #188 from slarosa/master
Fix #5861
  • Loading branch information
alexbruy committed Jun 26, 2012
2 parents 1e7e763 + e27ce7c commit 91862c3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/plugins/fTools/tools/ftools_utils.py
Expand Up @@ -351,6 +351,9 @@ def getGeomType(gT):
elif gT == 2 or gT == 5:
gTypeListLine = [ QGis.WKBLineString, QGis.WKBMultiLineString ]
return gTypeListLine
elif gT == 1 or gT == 4:
gTypeListPoint = [ QGis.WKBPoint, QGis.WKBMultiPoint ]
return gTypeListPoint

def getShapesByGeometryType( baseDir, inShapes, geomType ):
outShapes = QStringList()
Expand Down

0 comments on commit 91862c3

Please sign in to comment.