Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Jan 3, 2014
1 parent 79447b9 commit 327f561
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/gui/ParametersPanel.py
Expand Up @@ -342,7 +342,7 @@ def setTableContent(self):
numOutputs = len(outputs)
self.tableWidget.setRowCount(numParams + numOutputs)

for i, param in enurmerate(params):
for i, param in enumerate(params):
item = QtGui.QTableWidgetItem(param.description)
item.setFlags(QtCore.Qt.ItemIsEnabled)
self.tableWidget.setItem(i, 0, item)
Expand All @@ -351,7 +351,7 @@ def setTableContent(self):
self.tableWidget.setCellWidget(i, 1, item)
self.tableWidget.setRowHeight(i, 22)

for i, output in enurmerate(outputs):
for i, output in enumerate(outputs):
item = QtGui.QTableWidgetItem(output.description + '<'
+ output.__module__.split('.')[-1] + '>')
item.setFlags(QtCore.Qt.ItemIsEnabled)
Expand Down

0 comments on commit 327f561

Please sign in to comment.