diff options
| author | Ingo Klöcker <[email protected]> | 2023-12-13 09:16:41 +0000 |
|---|---|---|
| committer | Ingo Klöcker <[email protected]> | 2023-12-13 12:04:32 +0000 |
| commit | f7d69de030b36c1f8cb3491dc97750fb7725f258 (patch) | |
| tree | c466b7b559f4e18479f1b6f4b2b65907a89e87f7 /lang/qt/src/threadedjobmixin.h | |
| parent | core: percent decode filename (diff) | |
| download | gpgme-f7d69de030b36c1f8cb3491dc97750fb7725f258.tar.gz gpgme-f7d69de030b36c1f8cb3491dc97750fb7725f258.zip | |
qt: Replace Q_NULLPTR with nullptr
* lang/qt/src/defaultkeygenerationjob.h, lang/qt/src/qgpgmebackend.h,
lang/qt/src/quickjob.h, lang/qt/src/threadedjobmixin.h: Replace all
occurrences of Q_NULLPTR with nullptr.
--
Diffstat (limited to 'lang/qt/src/threadedjobmixin.h')
| -rw-r--r-- | lang/qt/src/threadedjobmixin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/qt/src/threadedjobmixin.h b/lang/qt/src/threadedjobmixin.h index 92a02c24..ad07e121 100644 --- a/lang/qt/src/threadedjobmixin.h +++ b/lang/qt/src/threadedjobmixin.h @@ -95,7 +95,7 @@ template <typename T_result> class Thread : public QThread { public: - explicit Thread(QObject *parent = Q_NULLPTR) : QThread(parent) {} + explicit Thread(QObject *parent = nullptr) : QThread(parent) {} void setFunction(const std::function<T_result()> &function) { |
