This commit is contained in:
Peter Petrik 2021-01-26 08:54:44 +01:00 committed by Nyall Dawson
parent ed45bc1319
commit 6a1bb9c01d
2 changed files with 1 additions and 2 deletions

View File

@ -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;
};

View File

@ -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: