ssl: Use QSslSocket directly to avoid redundant qobject_casts
[quassel.git] / src / common / ctcpevent.cpp
index c4ca95f..e1d0518 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2018 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  *
@@ -20,7 +20,7 @@
 
 #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);
@@ -28,8 +28,7 @@ Event *CtcpEvent::create(EventManager::EventType type, QVariantMap &map, Network
     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<CtcpType>(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();