X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fctcpevent.cpp;h=5fbfdb26573180975ee46e9ff41d82067578f6ba;hp=780cda5d7401a1bee7c22cc588d7923a9e17d353;hb=d1d1e6ef1d2073d629bf54fd8e0d31f647f9cb88;hpb=6f38b6fdeb73e726c24b26a97b98c9cfe0fc8a0e diff --git a/src/common/ctcpevent.cpp b/src/common/ctcpevent.cpp index 780cda5d..5fbfdb26 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-2014 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,37 +15,39 @@ * 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) { - if(type == EventManager::CtcpEvent || type == EventManager::CtcpEventFlush) - return new CtcpEvent(type, map, 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 0; } CtcpEvent::CtcpEvent(EventManager::EventType type, QVariantMap &map, Network *network) - : IrcEvent(type, map, network) + : IrcEvent(type, map, network) { - _ctcpType = static_cast(map.take("ctcpType").toInt()); - _ctcpCmd = map.take("ctcpCmd").toString(); - _target = map.take("target").toString(); - _param = map.take("param").toString(); - _reply = map.take("repy").toString(); - _uuid = map.take("uuid").toString(); + _ctcpType = static_cast(map.take("ctcpType").toInt()); + _ctcpCmd = map.take("ctcpCmd").toString(); + _target = map.take("target").toString(); + _param = map.take("param").toString(); + _reply = map.take("repy").toString(); + _uuid = map.take("uuid").toString(); } -void CtcpEvent::toVariantMap(QVariantMap &map) const { - IrcEvent::toVariantMap(map); - map["ctcpType"] = ctcpType(); - map["ctcpCmd"] = ctcpCmd(); - map["target"] = target(); - map["param"] = param(); - map["reply"] = reply(); - map["uuid"] = uuid().toString(); +void CtcpEvent::toVariantMap(QVariantMap &map) const +{ + IrcEvent::toVariantMap(map); + map["ctcpType"] = ctcpType(); + map["ctcpCmd"] = ctcpCmd(); + map["target"] = target(); + map["param"] = param(); + map["reply"] = reply(); + map["uuid"] = uuid().toString(); }