X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fctcpevent.cpp;h=e1d051859cdef2ff4d99acb3c9b67fe792494d0b;hp=e45b585b6d92d8bd0565408f31c231c1398d0269;hb=c0d6dc0dec628f2e143e37ecc95cec45e636f8a5;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/common/ctcpevent.cpp b/src/common/ctcpevent.cpp index e45b585b..e1d05185 100644 --- a/src/common/ctcpevent.cpp +++ b/src/common/ctcpevent.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,21 +15,20 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "ctcpevent.h" -Event *CtcpEvent::create(EventManager::EventType type, QVariantMap &map, Network *network) +Event* CtcpEvent::create(EventManager::EventType type, QVariantMap& map, Network* network) { if (type == EventManager::CtcpEvent || type == EventManager::CtcpEventFlush) return new CtcpEvent(type, map, network); - return 0; + return nullptr; } - -CtcpEvent::CtcpEvent(EventManager::EventType type, QVariantMap &map, Network *network) +CtcpEvent::CtcpEvent(EventManager::EventType type, QVariantMap& map, Network* network) : IrcEvent(type, map, network) { _ctcpType = static_cast(map.take("ctcpType").toInt()); @@ -40,8 +39,7 @@ CtcpEvent::CtcpEvent(EventManager::EventType type, QVariantMap &map, Network *ne _uuid = map.take("uuid").toString(); } - -void CtcpEvent::toVariantMap(QVariantMap &map) const +void CtcpEvent::toVariantMap(QVariantMap& map) const { IrcEvent::toVariantMap(map); map["ctcpType"] = ctcpType();