Skip to content

Commit

Permalink
[processing] add support for int64 fields (fix #14777)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed May 9, 2016
1 parent 14acde5 commit f1e6d87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/gui/ParametersPanel.py
Expand Up @@ -446,8 +446,8 @@ def getFields(self, layer, datatype):
if datatype == ParameterTableField.DATA_TYPE_STRING:
fieldTypes = [QVariant.String]
elif datatype == ParameterTableField.DATA_TYPE_NUMBER:
fieldTypes = [QVariant.Int, QVariant.Double, QVariant.ULongLong,
QVariant.UInt]
fieldTypes = [QVariant.Int, QVariant.Double, QVariant.LongLong,
QVariant.UInt, QVariant.ULongLong]

fieldNames = set()
for field in layer.pendingFields():
Expand Down

0 comments on commit f1e6d87

Please sign in to comment.