Skip to content

Commit 0c7ce60

Browse files
committedJul 16, 2014
[processing] fix icons for TauDEM algs
1 parent c72e881 commit 0c7ce60

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed
 

‎python/plugins/processing/algs/taudem/dinfdistdown.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class DinfDistDown(GeoAlgorithm):
6969
}
7070

7171
def getIcon(self):
72-
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
72+
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
7373

7474
def defineCharacteristics(self):
7575
self.name = 'D-Infinity Distance Down'

‎python/plugins/processing/algs/taudem/dinfdistup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class DinfDistUp(GeoAlgorithm):
7070
}
7171

7272
def getIcon(self):
73-
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
73+
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
7474

7575
def defineCharacteristics(self):
7676
self.name = 'D-Infinity Distance Up'

‎python/plugins/processing/algs/taudem/dinftranslimaccum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class DinfTransLimAccum(GeoAlgorithm):
5959
OUT_CONCENTR_GRID = 'OUT_CONCENTR_GRID'
6060

6161
def getIcon(self):
62-
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
62+
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
6363

6464
def defineCharacteristics(self):
6565
self.name = 'D-Infinity Transport Limited Accumulation'

‎python/plugins/processing/algs/taudem/dinftranslimaccum2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class DinfTransLimAccum2(GeoAlgorithm):
5959
OUT_CONCENTR_GRID = 'OUT_CONCENTR_GRID'
6060

6161
def getIcon(self):
62-
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
62+
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
6363

6464
def defineCharacteristics(self):
6565
self.name = 'D-Infinity Transport Limited Accumulation - 2'

‎python/plugins/processing/algs/taudem/dropanalysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class DropAnalysis(GeoAlgorithm):
6363
STEPS = ['Logarithmic', 'Linear']
6464

6565
def getIcon(self):
66-
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
66+
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
6767

6868
def defineCharacteristics(self):
6969
self.name = 'Stream Drop Analysis'

‎python/plugins/processing/algs/taudem/gridnet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class GridNet(GeoAlgorithm):
5757
STRAHLER_GRID = 'STRAHLER_GRID'
5858

5959
def getIcon(self):
60-
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
60+
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
6161

6262
def defineCharacteristics(self):
6363
self.name = 'Grid Network'

‎python/plugins/processing/algs/taudem/lengtharea.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class LengthArea(GeoAlgorithm):
5454
STREAM_SOURCE_GRID = 'STREAM_SOURCE_GRID'
5555

5656
def getIcon(self):
57-
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
57+
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
5858

5959
def defineCharacteristics(self):
6060
self.name = 'Length Area Stream Source'

‎python/plugins/processing/algs/taudem/peukerdouglas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class PeukerDouglas(GeoAlgorithm):
4949
STREAM_SOURCE_GRID = 'STREAM_SOURCE_GRID'
5050

5151
def getIcon(self):
52-
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
52+
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
5353

5454
def defineCharacteristics(self):
5555
self.name = 'Peuker Douglas'

‎python/plugins/processing/algs/taudem/slopearea.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class SlopeArea(GeoAlgorithm):
5454
SLOPE_AREA_GRID = 'SLOPE_AREA_GRID'
5555

5656
def getIcon(self):
57-
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
57+
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
5858

5959
def defineCharacteristics(self):
6060
self.name = 'Slope Area Combination'

0 commit comments

Comments
 (0)
Please sign in to comment.