File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
python/plugins/processing/gui Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -347,7 +347,7 @@ def createWidget(self):
347
347
else :
348
348
widget = QComboBox ()
349
349
widget .setEditable (True )
350
- extents = self .dialog .getAvailableValuesOfType (QgsProcessingParameterExtent , (OutputExtent , QgsProcessingOutputString ))
350
+ extents = self .dialog .getAvailableValuesOfType (QgsProcessingParameterExtent , (QgsProcessingOutputString ))
351
351
if self .param .flags () & QgsProcessingParameterDefinition .FlagOptional :
352
352
widget .addItem (self .USE_MIN_COVERING_EXTENT , None )
353
353
layers = self .dialog .getAvailableValuesOfType ([QgsProcessingParameterFeatureSource ,
@@ -569,9 +569,9 @@ def _getOptions(self):
569
569
elif self .param .layerType () == QgsProcessing .TypeVector :
570
570
options = self .dialog .getAvailableValuesOfType ((QgsProcessingParameterFeatureSource ,
571
571
QgsProcessingParameterVectorLayer ,
572
- QgsProcessingParameterMultipleLayers ), OutputTable )
572
+ QgsProcessingParameterMultipleLayers ), QgsProcessingOutputVectorLayer )
573
573
else :
574
- options = self .dialog .getAvailableValuesOfType (QgsProcessingParameterFile , OutputFile )
574
+ options = self .dialog .getAvailableValuesOfType (QgsProcessingParameterFile , QgsProcessingOutputFile )
575
575
options = sorted (options , key = lambda opt : self .dialog .resolveValueDescription (opt ))
576
576
return options
577
577
You can’t perform that action at this time.
0 commit comments