Skip to content

Commit

Permalink
fTools: fix error basic statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 1, 2013
1 parent 7af82ca commit b74cb5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/fTools/tools/doVisual.py
Expand Up @@ -91,8 +91,8 @@ def update( self ):
else:
self.useSelected.setCheckState( Qt.Unchecked )
# add all fields in combobox because now we can work with text fields too
for i in changedField:
self.cmbField.addItem( unicode( changedField[i].name() ) )
for f in changedField:
self.cmbField.addItem( unicode( f.name() ) )

def accept( self ):
if self.inShape.currentText() == "":
Expand Down

0 comments on commit b74cb5f

Please sign in to comment.