Skip to content
Permalink
Browse files
Fix parameter names
  • Loading branch information
anitagraser committed Jun 22, 2018
1 parent 60d5e4c commit bebadef
Showing 1 changed file with 2 additions and 2 deletions.
@@ -69,11 +69,11 @@ def initAlgorithm(self, config=None):
self.addParameter(db_param)
self.addParameter(QgsProcessingParameterString(
self.SQL,
self.tr('SQL query (must return unique id and geom field)'),
self.tr('SQL query'),
multiLine=True))
self.addParameter(QgsProcessingParameterString(
self.ID_FIELD,
self.tr('ID field name'),
self.tr('Unique ID field name'),
defaultValue='id'))
self.addParameter(QgsProcessingParameterString(
self.GEOMETRY_FIELD,

0 comments on commit bebadef

Please sign in to comment.