From b18a57daa33f0fefa5f4c63aa7f448b48d302e0d Mon Sep 17 00:00:00 2001 From: Jonah BrĂ¼chert Date: Fri, 10 May 2019 22:31:48 +0200 Subject: Modernize codebase using clang-tidy Using the following checks: * modernize-use-nullptr * modernize-use-override * modernize-use-using * modernize-use-bool-literals --- src/client/QXmppInvokable.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client/QXmppInvokable.h') diff --git a/src/client/QXmppInvokable.h b/src/client/QXmppInvokable.h index 6edd511e..fbb52978 100644 --- a/src/client/QXmppInvokable.h +++ b/src/client/QXmppInvokable.h @@ -41,9 +41,9 @@ class QXMPP_EXPORT QXmppInvokable : public QObject { Q_OBJECT public: - QXmppInvokable( QObject *parent = 0 ); + QXmppInvokable( QObject *parent = nullptr ); - ~QXmppInvokable(); + ~QXmppInvokable() override; /** * Execute a method on an object. with a set of arguments. This method is reentrant, and the method -- cgit v1.2.3