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 3d71aff commit ae44e7bCopy full SHA for ae44e7b
src/sextante/gui/ParametersPanel.py
@@ -278,9 +278,9 @@ def updateDependentFields(self):
278
def getFields(self, layer, datatype):
279
fieldTypes = []
280
if datatype == ParameterTableField.DATA_TYPE_STRING:
281
- fieldTypes = [QVariant.String]
+ fieldTypes = [QtCore.QVariant.String]
282
elif datatype == ParameterTableField.DATA_TYPE_NUMBER:
283
- fieldTypes = [QVariant.Int, QVariant.Double]
+ fieldTypes = [QtCore.QVariant.Int, QtCore.QVariant.Double]
284
285
fieldNames = []
286
fieldMap = layer.pendingFields()
0 commit comments