X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircchannel.cpp;fp=src%2Fcore%2Fcoreircchannel.cpp;h=2dd1d9d9ac8865002faf5f4fef985df9227c6013;hp=208551049d4aa9a482b355b35b7c20ce31e32019;hb=694f9bfbf7f1af19108461c7e00d133e55082bce;hpb=61c8d84d1c849373e0f115dc748ed45cff95287d diff --git a/src/core/coreircchannel.cpp b/src/core/coreircchannel.cpp index 20855104..2dd1d9d9 100644 --- a/src/core/coreircchannel.cpp +++ b/src/core/coreircchannel.cpp @@ -23,46 +23,53 @@ INIT_SYNCABLE_OBJECT(CoreIrcChannel) CoreIrcChannel::CoreIrcChannel(const QString &channelname, Network *network) - : IrcChannel(channelname, network), + : IrcChannel(channelname, network), _receivedWelcomeMsg(false) { #ifdef HAVE_QCA2 - _cipher = 0; + _cipher = 0; #endif } -CoreIrcChannel::~CoreIrcChannel() { + +CoreIrcChannel::~CoreIrcChannel() +{ #ifdef HAVE_QCA2 - delete _cipher; + delete _cipher; #endif } + #ifdef HAVE_QCA2 -Cipher *CoreIrcChannel::cipher() const { - if(!_cipher) - _cipher = new Cipher(); +Cipher *CoreIrcChannel::cipher() const +{ + if (!_cipher) + _cipher = new Cipher(); - return _cipher; + return _cipher; } -void CoreIrcChannel::setEncrypted(bool e) { - if(!Cipher::neededFeaturesAvailable()) - return; - if(e) { - if(topic().isEmpty()) - return; +void CoreIrcChannel::setEncrypted(bool e) +{ + if (!Cipher::neededFeaturesAvailable()) + return; + + if (e) { + if (topic().isEmpty()) + return; - QByteArray key = qobject_cast(network())->cipherKey(name()); - if(key.isEmpty()) - return; + QByteArray key = qobject_cast(network())->cipherKey(name()); + if (key.isEmpty()) + return; - if(!cipher()->setKey(key)) - return; + if (!cipher()->setKey(key)) + return; - QByteArray decrypted = cipher()->decryptTopic(topic().toAscii()); - setTopic(decodeString(decrypted)); - } + QByteArray decrypted = cipher()->decryptTopic(topic().toAscii()); + setTopic(decodeString(decrypted)); + } } + #endif