X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreircuser.h;h=3bddef781e907fe7e0b260ea3822748f5d0398aa;hb=d030c159599a22c9023b8f0d34909d3277707f52;hp=e0806d3e3e0efefaf2d40c7d8c7e31152505265a;hpb=3e63cb8a6e83765069a45101b86ae9e21dcc57ad;p=quassel.git diff --git a/src/core/coreircuser.h b/src/core/coreircuser.h index e0806d3e..3bddef78 100644 --- a/src/core/coreircuser.h +++ b/src/core/coreircuser.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -23,7 +23,7 @@ #include "ircuser.h" #ifdef HAVE_QCA2 -# include "cipher.h" +# include "cipher.h" #endif class CoreIrcUser : public IrcUser @@ -31,15 +31,15 @@ class CoreIrcUser : public IrcUser Q_OBJECT public: - CoreIrcUser(const QString &hostmask, Network *network); - virtual ~CoreIrcUser(); + CoreIrcUser(const QString& hostmask, Network* network); + ~CoreIrcUser() override; #ifdef HAVE_QCA2 - Cipher *cipher() const; + Cipher* cipher() const; #endif #ifdef HAVE_QCA2 private: - mutable Cipher *_cipher; + mutable Cipher* _cipher; #endif };