Skip to content
Permalink
Browse files
fTools: fix error basic statistics
  • Loading branch information
jef-n committed Feb 1, 2013
1 parent 7af82ca commit b74cb5f
Showing 1 changed file with 2 additions and 2 deletions.
@@ -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() == "":

0 comments on commit b74cb5f

Please sign in to comment.