Skip to content

Commit

Permalink
Fix group id of GDAL algorithms. Follows up 53bc147
Browse files Browse the repository at this point in the history
  • Loading branch information
borysiasty committed Dec 20, 2017
1 parent bf45d0b commit ecb9611
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/AssignProjection.py
Expand Up @@ -70,7 +70,7 @@ def icon(self):
def group(self):
return self.tr('Raster projections')

def group(self):
def groupId(self):
return 'rasterprojections'

def getConsoleCommands(self, parameters, context, feedback, executing=True):
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/ogrinfo.py
Expand Up @@ -68,7 +68,7 @@ def displayName(self):
def group(self):
return self.tr('Vector miscellaneous')

def group(self):
def groupId(self):
return 'vectormiscellaneous'

def getConsoleCommands(self, parameters, context, feedback, executing=True):
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/polygonize.py
Expand Up @@ -79,7 +79,7 @@ def displayName(self):
def group(self):
return self.tr('Raster conversion')

def group(self):
def groupId(self):
return 'rasterconversion'

def icon(self):
Expand Down

0 comments on commit ecb9611

Please sign in to comment.