X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fctcpevent.cpp;h=e1d051859cdef2ff4d99acb3c9b67fe792494d0b;hp=19455b2299a6067a2e2f02598a9c35dd6544f685;hb=HEAD;hpb=b65b9f7615165e8700a44d59b7275a55558dd45b diff --git a/src/common/ctcpevent.cpp b/src/common/ctcpevent.cpp index 19455b22..f86ff53c 100644 --- a/src/common/ctcpevent.cpp +++ b/src/common/ctcpevent.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -20,16 +20,15 @@ #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();