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 /src/server/QXmppServerPlugin.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 'src/server/QXmppServerPlugin.h')
| -rw-r--r-- | src/server/QXmppServerPlugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/QXmppServerPlugin.h b/src/server/QXmppServerPlugin.h index a07e7ca8..73b10631 100644 --- a/src/server/QXmppServerPlugin.h +++ b/src/server/QXmppServerPlugin.h @@ -55,11 +55,11 @@ public: /// Creates and returns the specified QXmppServerExtension. /// /// \param key The key for the QXmppServerExtension. - virtual QXmppServerExtension *create(const QString &key) = 0; + QXmppServerExtension *create(const QString &key) override = 0; /// Returns the list of keys supported by this plugin. /// - virtual QStringList keys() const = 0; + QStringList keys() const override = 0; }; #endif |
