Fix some processing algorithm exception handling

This commit is contained in:
Nyall Dawson 2017-06-27 13:50:13 +10:00
parent 1b2afea23e
commit cd9328d259

View File

@ -47,7 +47,7 @@ bool QgsProcessingAlgRunnerTask::run()
bool ok = false;
try
{
mResults = mAlgorithm->run( mParameters, mContext, mFeedback.get(), &ok );
mResults = mAlgorithm->run( mParameters, mContext, mFeedback, &ok );
}
catch ( QgsProcessingException & )
{