@@ -262,18 +262,18 @@ def initializeParameters():
262262 Processing .registerParameter (PARAMETER_RANGE , QCoreApplication .translate ('Processing' , 'Range' ), QgsProcessingParameterRange )
263263 Processing .registerParameter (PARAMETER_POINT , QCoreApplication .translate ('Processing' , 'Point' ), QgsProcessingParameterPoint ,
264264 description = QCoreApplication .translate ('Processing' , 'A geographic point parameter.' ))
265- Processing .registerParameter (PARAMETER_ENUM , QCoreApplication .translate ('Processing' , 'Enum' ), QgsProcessingParameterEnum )
265+ Processing .registerParameter (PARAMETER_ENUM , QCoreApplication .translate ('Processing' , 'Enum' ), QgsProcessingParameterEnum , exposeToModeller = False )
266266 Processing .registerParameter (PARAMETER_EXTENT , QCoreApplication .translate ('Processing' , 'Extent' ), QgsProcessingParameterExtent ,
267267 description = QCoreApplication .translate ('Processing' , 'A map extent parameter.' ))
268268 Processing .registerParameter (PARAMETER_MATRIX , QCoreApplication .translate ('Processing' , 'Matrix' ), QgsProcessingParameterMatrix )
269269 Processing .registerParameter (PARAMETER_FILE , QCoreApplication .translate ('Processing' , 'File' ), QgsProcessingParameterFile ,
270270 description = QCoreApplication .translate ('Processing' , 'A file parameter, for use with non-map layer file sources.' ))
271271 Processing .registerParameter (PARAMETER_TABLE_FIELD , QCoreApplication .translate ('Processing' , 'Field' ), QgsProcessingParameterField ,
272272 description = QCoreApplication .translate ('Processing' , 'A vector field parameter, for selecting an existing field from a vector source.' ))
273- Processing .registerParameter (PARAMETER_VECTOR_DESTINATION , QCoreApplication .translate ('Processing' , 'Vector Destination' ), QgsProcessingParameterVectorDestination )
274- Processing .registerParameter (PARAMETER_FILE_DESTINATION , QCoreApplication .translate ('Processing' , 'File Destination' ), QgsProcessingParameterFileDestination )
275- Processing .registerParameter (PARAMETER_FOLDER_DESTINATION , QCoreApplication .translate ('Processing' , 'Folder Destination' ), QgsProcessingParameterFolderDestination )
276- Processing .registerParameter (PARAMETER_RASTER_DESTINATION , QCoreApplication .translate ('Processing' , 'Raster Destination' ), QgsProcessingParameterRasterDestination )
273+ Processing .registerParameter (PARAMETER_VECTOR_DESTINATION , QCoreApplication .translate ('Processing' , 'Vector Destination' ), QgsProcessingParameterVectorDestination , exposeToModeller = False )
274+ Processing .registerParameter (PARAMETER_FILE_DESTINATION , QCoreApplication .translate ('Processing' , 'File Destination' ), QgsProcessingParameterFileDestination , exposeToModeller = False )
275+ Processing .registerParameter (PARAMETER_FOLDER_DESTINATION , QCoreApplication .translate ('Processing' , 'Folder Destination' ), QgsProcessingParameterFolderDestination , exposeToModeller = False )
276+ Processing .registerParameter (PARAMETER_RASTER_DESTINATION , QCoreApplication .translate ('Processing' , 'Raster Destination' ), QgsProcessingParameterRasterDestination , exposeToModeller = False )
277277 Processing .registerParameter (PARAMETER_STRING , QCoreApplication .translate ('Processing' , 'String' ), QgsProcessingParameterString ,
278278 description = QCoreApplication .translate ('Processing' , 'A freeform string parameter.' ))
279279 Processing .registerParameter (PARAMETER_MULTIPLE , QCoreApplication .translate ('Processing' , 'Multiple Layers' ), QgsProcessingParameterMultipleLayers ,
0 commit comments