We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 574c9f2 commit ee8ef42Copy full SHA for ee8ef42
python/plugins/processing/algs/qgis/ui/FieldsMappingPanel.py
@@ -16,7 +16,6 @@
16
* *
17
***************************************************************************
18
"""
19
-from builtins import range
20
21
__author__ = 'Arnaud Morvan'
22
__date__ = 'October 2014'
@@ -76,7 +75,8 @@ class FieldsMappingModel(QAbstractTableModel):
76
75
(QVariant.Double, "Double"),
77
(QVariant.Int, "Integer"),
78
(QVariant.LongLong, "Integer64"),
79
- (QVariant.String, "String")])
+ (QVariant.String, "String"),
+ (QVariant.Bool, "Boolean")])
80
81
def __init__(self, parent=None):
82
super(FieldsMappingModel, self).__init__(parent)
0 commit comments