X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresessioneventprocessor.cpp;h=26f6c6a85f45bc54299540c6fcc46b02e126837e;hp=ff1d2415ba21dfdb442219b413f3323c04ee73d9;hb=68878dc8366f2f4a0afe132847aad9a51a80cdbf;hpb=45affd4fa815bb21d0b2e46ac80114bb9174f801 diff --git a/src/core/coresessioneventprocessor.cpp b/src/core/coresessioneventprocessor.cpp index ff1d2415..26f6c6a8 100644 --- a/src/core/coresessioneventprocessor.cpp +++ b/src/core/coresessioneventprocessor.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 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 * @@ -985,13 +985,13 @@ void CoreSessionEventProcessor::processIrcEvent322(IrcEvent *e) switch (e->params().count()) { case 3: topic = e->params()[2]; - [[fallthrough]]; + [[clang::fallthrough]]; case 2: userCount = e->params()[1].toUInt(); - [[fallthrough]]; + [[clang::fallthrough]]; case 1: channelName = e->params()[0]; - [[fallthrough]]; + [[clang::fallthrough]]; default: break; } @@ -1550,6 +1550,6 @@ void CoreSessionEventProcessor::handleCtcpTime(CtcpEvent *e) void CoreSessionEventProcessor::handleCtcpVersion(CtcpEvent *e) { - e->setReply(QString("Quassel IRC %1 (built on %2) -- http://www.quassel-irc.org") + e->setReply(QString("Quassel IRC %1 (built on %2) -- https://www.quassel-irc.org") .arg(Quassel::buildInfo().plainVersionString).arg(Quassel::buildInfo().commitDate)); }