Skip to content

Commit 45859be

Browse files
authoredDec 20, 2017
Merge pull request #5923 from borysiasty/processing_groups
[processing] Fix group id of GDAL algorithms.
2 parents f5a650f + ecb9611 commit 45859be

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎python/plugins/processing/algs/gdal/AssignProjection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def icon(self):
7070
def group(self):
7171
return self.tr('Raster projections')
7272

73-
def group(self):
73+
def groupId(self):
7474
return 'rasterprojections'
7575

7676
def getConsoleCommands(self, parameters, context, feedback, executing=True):

‎python/plugins/processing/algs/gdal/ogrinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def displayName(self):
6868
def group(self):
6969
return self.tr('Vector miscellaneous')
7070

71-
def group(self):
71+
def groupId(self):
7272
return 'vectormiscellaneous'
7373

7474
def getConsoleCommands(self, parameters, context, feedback, executing=True):

‎python/plugins/processing/algs/gdal/polygonize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def displayName(self):
7979
def group(self):
8080
return self.tr('Raster conversion')
8181

82-
def group(self):
82+
def groupId(self):
8383
return 'rasterconversion'
8484

8585
def icon(self):

0 commit comments

Comments
 (0)
Please sign in to comment.