X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fircchannel.cpp;h=4b8cd33406a8ae66fd6dcec3e70c23bb57347bbd;hp=de7b830977dad9dff256946a81c592704d6fca31;hb=0dbec2cfc937857d66a9645249f876f1e6b3f05e;hpb=46fba5edfabcb55103cd3fdbfc5ce85c9b592dd6 diff --git a/src/common/ircchannel.cpp b/src/common/ircchannel.cpp index de7b8309..4b8cd334 100644 --- a/src/common/ircchannel.cpp +++ b/src/common/ircchannel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -555,9 +555,8 @@ bool IrcChannel::hasMode(const QChar &mode) const return _C_channelModes.contains(mode); case Network::D_CHANMODE: return _D_channelModes.contains(mode); - default: - return false; } + return false; } @@ -590,9 +589,11 @@ QStringList IrcChannel::modeValueList(const QChar &mode) const case Network::A_CHANMODE: if (_A_channelModes.contains(mode)) return _A_channelModes[mode]; + break; default: - return QStringList(); + ; } + return {}; }