Skip to content

Commit

Permalink
fix sip
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPetrik authored and nyalldawson committed Jan 27, 2021
1 parent ed45bc1 commit 6a1bb9c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion python/core/auto_generated/qgsrunprocess.sip.in
Expand Up @@ -129,7 +129,6 @@ After execution completes, the process' result code will be returned.
%Docstring
After a call to :py:func:`~QgsBlockingProcess.run`, returns the process' exit status.
%End
int exitStatus() const;

};

Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsrunprocess.h
Expand Up @@ -184,7 +184,7 @@ class CORE_EXPORT QgsBlockingProcess : public QObject
#if QT_CONFIG(process)
QProcess::ExitStatus exitStatus() const;
#else
int exitStatus() const {return 0;}
int exitStatus() const SIP_SKIP {return 0;}
#endif

private:
Expand Down

0 comments on commit 6a1bb9c

Please sign in to comment.