Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] boolean fieds support in the Refactor Fields algorithm (fix
  • Loading branch information
alexbruy committed Nov 16, 2017
1 parent 574c9f2 commit ee8ef42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/ui/FieldsMappingPanel.py
Expand Up @@ -16,7 +16,6 @@
* *
***************************************************************************
"""
from builtins import range

__author__ = 'Arnaud Morvan'
__date__ = 'October 2014'
Expand Down Expand Up @@ -76,7 +75,8 @@ class FieldsMappingModel(QAbstractTableModel):
(QVariant.Double, "Double"),
(QVariant.Int, "Integer"),
(QVariant.LongLong, "Integer64"),
(QVariant.String, "String")])
(QVariant.String, "String"),
(QVariant.Bool, "Boolean")])

def __init__(self, parent=None):
super(FieldsMappingModel, self).__init__(parent)
Expand Down

0 comments on commit ee8ef42

Please sign in to comment.