Skip to content

Commit

Permalink
GdalTools: In widgetBatchBase runItem method, refreshArgs is not a SI…
Browse files Browse the repository at this point in the history
…GNAL

The commit 9db908c GdalTools: new style signals generates a regression
In the widgetBatchBase runItem method, refreshArgs is not a SIGNAL
  • Loading branch information
rldhont committed Sep 15, 2016
1 parent d642571 commit 8bb7284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/GdalTools/tools/widgetBatchBase.py
Expand Up @@ -104,7 +104,7 @@ def runItem(self, index, total):
outFile = self.outFiles[index]

args = self.getBatchArguments(self.inFiles[index], outFile)
self.base.refreshArgs.emit(args)
self.base.refreshArgs(args)
BasePluginWidget.onRun(self)

def onFinished(self, exitCode, status):
Expand Down

0 comments on commit 8bb7284

Please sign in to comment.