diff options
| author | Jonah BrĂ¼chert <jbb.prv@gmx.de> | 2019-05-10 22:31:48 +0200 |
|---|---|---|
| committer | LNJ <lnj@kaidan.im> | 2019-09-08 14:07:00 +0200 |
| commit | b18a57daa33f0fefa5f4c63aa7f448b48d302e0d (patch) | |
| tree | 8682c7ea44b834a2910035049238e8628db552a0 /examples/example_6_rpcClient/rpcClient.h | |
| parent | 35256b7d95374717905f8ac8d4d524c4b691389e (diff) | |
| download | qxmpp-b18a57daa33f0fefa5f4c63aa7f448b48d302e0d.tar.gz | |
Modernize codebase using clang-tidy
Using the following checks:
* modernize-use-nullptr
* modernize-use-override
* modernize-use-using
* modernize-use-bool-literals
Diffstat (limited to 'examples/example_6_rpcClient/rpcClient.h')
| -rw-r--r-- | examples/example_6_rpcClient/rpcClient.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/example_6_rpcClient/rpcClient.h b/examples/example_6_rpcClient/rpcClient.h index 126e8568..d68b7382 100644 --- a/examples/example_6_rpcClient/rpcClient.h +++ b/examples/example_6_rpcClient/rpcClient.h @@ -35,8 +35,8 @@ class rpcClient : public QXmppClient Q_OBJECT public: - rpcClient(QObject *parent = 0); - ~rpcClient(); + rpcClient(QObject *parent = nullptr); + ~rpcClient() override; private slots: void slotInvokeRemoteMethod(); |
