X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreircchannel.cpp;h=ccb82a50633ee7f7724035caedf9ebafe7435dd2;hb=921321156c2f1ceed0e02d519a1835e63e8c8b48;hp=7ec82b93df6ecd8092b20c6c34283607c0fef732;hpb=ac654fdeeece68d64561920479f064ad3c237e26;p=quassel.git diff --git a/src/core/coreircchannel.cpp b/src/core/coreircchannel.cpp index 7ec82b93..ccb82a50 100644 --- a/src/core/coreircchannel.cpp +++ b/src/core/coreircchannel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2015 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -61,7 +61,7 @@ void CoreIrcChannel::setEncrypted(bool e) if (topic().isEmpty()) return; - QByteArray decrypted = cipher()->decryptTopic(topic().toAscii()); + QByteArray decrypted = cipher()->decryptTopic(topic().toLatin1()); setTopic(decodeString(decrypted)); } }