X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircchannel.h;h=5aabb0c546fc55e776cf42864f58d19313638b7a;hp=249aca05014431bf98fa3810a345588769c9f597;hb=a95ad2de573027f9bee36db972bcae4195168d0c;hpb=3e63cb8a6e83765069a45101b86ae9e21dcc57ad diff --git a/src/core/coreircchannel.h b/src/core/coreircchannel.h index 249aca05..5aabb0c5 100644 --- a/src/core/coreircchannel.h +++ b/src/core/coreircchannel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2020 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 "ircchannel.h" #ifdef HAVE_QCA2 -# include "cipher.h" +# include "cipher.h" #endif class CoreIrcChannel : public IrcChannel @@ -31,11 +31,11 @@ class CoreIrcChannel : public IrcChannel Q_OBJECT public: - CoreIrcChannel(const QString &channelname, Network *network); - virtual ~CoreIrcChannel(); + CoreIrcChannel(const QString& channelname, Network* network); + ~CoreIrcChannel() override; #ifdef HAVE_QCA2 - Cipher *cipher() const; + Cipher* cipher() const; void setEncrypted(bool); #endif @@ -46,6 +46,6 @@ private: bool _receivedWelcomeMsg; #ifdef HAVE_QCA2 - mutable Cipher *_cipher; + mutable Cipher* _cipher; #endif };