Skip to content

Commit

Permalink
[processing] Fix exceptions when reporting errors during batch execution
Browse files Browse the repository at this point in the history
Fixes #33105

(cherry picked from commit 6ef3746)
  • Loading branch information
nyalldawson authored and nirvn committed Dec 4, 2019
1 parent f7c9170 commit b4a1573
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -136,7 +136,7 @@ to scale the current progress to account for progress through the overall proces

virtual void setProgressText( const QString &text );

virtual void reportError( const QString &error, bool fatalError );
virtual void reportError( const QString &error, bool fatalError = false );

virtual void pushInfo( const QString &info );

Expand Down
2 changes: 1 addition & 1 deletion src/core/processing/qgsprocessingfeedback.h
Expand Up @@ -134,7 +134,7 @@ class CORE_EXPORT QgsProcessingMultiStepFeedback : public QgsProcessingFeedback
void setCurrentStep( int step );

void setProgressText( const QString &text ) override;
void reportError( const QString &error, bool fatalError ) override;
void reportError( const QString &error, bool fatalError = false ) override;
void pushInfo( const QString &info ) override;
void pushCommandInfo( const QString &info ) override;
void pushDebugInfo( const QString &info ) override;
Expand Down

0 comments on commit b4a1573

Please sign in to comment.