X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircchannel.h;h=7cf2ae3f00e3a3d6e64b104c52e8d96e7013e4a4;hp=b1b586b93b250c5e78514d2f4c2ac3caca10ed76;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=30b159cb876a9495de42e9a3e70ca050516f0805;ds=sidebyside diff --git a/src/core/coreircchannel.h b/src/core/coreircchannel.h index b1b586b9..7cf2ae3f 100644 --- a/src/core/coreircchannel.h +++ b/src/core/coreircchannel.h @@ -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); + 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 };