Skip to content

Commit f1e6d87

Browse files
committedMay 9, 2016
[processing] add support for int64 fields (fix #14777)
1 parent 14acde5 commit f1e6d87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎python/plugins/processing/gui/ParametersPanel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -446,8 +446,8 @@ def getFields(self, layer, datatype):
446446
if datatype == ParameterTableField.DATA_TYPE_STRING:
447447
fieldTypes = [QVariant.String]
448448
elif datatype == ParameterTableField.DATA_TYPE_NUMBER:
449-
fieldTypes = [QVariant.Int, QVariant.Double, QVariant.ULongLong,
450-
QVariant.UInt]
449+
fieldTypes = [QVariant.Int, QVariant.Double, QVariant.LongLong,
450+
QVariant.UInt, QVariant.ULongLong]
451451

452452
fieldNames = set()
453453
for field in layer.pendingFields():

0 commit comments

Comments
 (0)
Please sign in to comment.