Skip to content

Commit ee8ef42

Browse files
committedNov 16, 2017
[processing] boolean fieds support in the Refactor Fields algorithm (fix #17168)
1 parent 574c9f2 commit ee8ef42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎python/plugins/processing/algs/qgis/ui/FieldsMappingPanel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
* *
1717
***************************************************************************
1818
"""
19-
from builtins import range
2019

2120
__author__ = 'Arnaud Morvan'
2221
__date__ = 'October 2014'
@@ -76,7 +75,8 @@ class FieldsMappingModel(QAbstractTableModel):
7675
(QVariant.Double, "Double"),
7776
(QVariant.Int, "Integer"),
7877
(QVariant.LongLong, "Integer64"),
79-
(QVariant.String, "String")])
78+
(QVariant.String, "String"),
79+
(QVariant.Bool, "Boolean")])
8080

8181
def __init__(self, parent=None):
8282
super(FieldsMappingModel, self).__init__(parent)

0 commit comments

Comments
 (0)
Please sign in to comment.