Skip to content

Commit

Permalink
Merge pull request #5923 from borysiasty/processing_groups
Browse files Browse the repository at this point in the history
[processing] Fix group id of GDAL algorithms.
  • Loading branch information
alexbruy committed Dec 20, 2017
2 parents f5a650f + ecb9611 commit 45859be
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 45859be

Please sign in to comment.