Skip to content

Commit

Permalink
Fix bug in error dialog for threaded executor
Browse files Browse the repository at this point in the history
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@292 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
  • Loading branch information
cpolymeris@gmail.com committed Jul 8, 2012
1 parent 9fbfd48 commit 79d1a4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sextante/gui/ParametersDialog.py
Expand Up @@ -244,7 +244,7 @@ def finish(self):
def error(self, msg):
self.algEx.finished.disconnect()
QApplication.restoreOverrideCursor()
QMessageBox.critical(self, "Error", msg)
QMessageBox.critical(self.dialog, "Error", msg)
SextanteLog.addToLog(SextanteLog.LOG_ERROR, msg)
keepOpen = SextanteConfig.getSetting(SextanteConfig.KEEP_DIALOG_OPEN)
if not keepOpen:
Expand Down

0 comments on commit 79d1a4f

Please sign in to comment.