modernize: Reformat ALL the source... again!
[quassel.git] / src / core / coreidentity.cpp
index 9e6618a..f0b75b0 100644 (file)
@@ -22,7 +22,7 @@
 
 #include "signalproxy.h"
 
-CoreIdentity::CoreIdentity(IdentityId id, QObject *parent)
+CoreIdentity::CoreIdentity(IdentityId id, QObjectparent)
     : Identity(id, parent)
 #ifdef HAVE_SSL
     , _certManager(*this)
@@ -34,8 +34,7 @@ CoreIdentity::CoreIdentity(IdentityId id, QObject *parent)
 #endif
 }
 
-
-CoreIdentity::CoreIdentity(const Identity &other, QObject *parent)
+CoreIdentity::CoreIdentity(const Identity& other, QObject* parent)
     : Identity(other, parent)
 #ifdef HAVE_SSL
     , _certManager(*this)
@@ -47,13 +46,12 @@ CoreIdentity::CoreIdentity(const Identity &other, QObject *parent)
 #endif
 }
 
-
-CoreIdentity::CoreIdentity(const CoreIdentity &other, QObject *parent)
+CoreIdentity::CoreIdentity(const CoreIdentity& other, QObject* parent)
     : Identity(other, parent)
 #ifdef HAVE_SSL
-    , _sslKey(other._sslKey),
-    _sslCert(other._sslCert),
-    _certManager(*this)
+    , _sslKey(other._sslKey)
+    , _sslCert(other._sslCert)
+    _certManager(*this)
 #endif
 {
 #ifdef HAVE_SSL
@@ -62,8 +60,7 @@ CoreIdentity::CoreIdentity(const CoreIdentity &other, QObject *parent)
 #endif
 }
 
-
-void CoreIdentity::synchronize(SignalProxy *proxy)
+void CoreIdentity::synchronize(SignalProxy* proxy)
 {
     proxy->synchronize(this);
 #ifdef HAVE_SSL
@@ -71,9 +68,8 @@ void CoreIdentity::synchronize(SignalProxy *proxy)
 #endif
 }
 
-
 #ifdef HAVE_SSL
-void CoreIdentity::setSslKey(const QByteArray &encoded)
+void CoreIdentity::setSslKey(const QByteArrayencoded)
 {
     QSslKey key(encoded, QSsl::Rsa);
     if (key.isNull())
@@ -83,16 +79,14 @@ void CoreIdentity::setSslKey(const QByteArray &encoded)
     setSslKey(key);
 }
 
-
-void CoreIdentity::setSslCert(const QByteArray &encoded)
+void CoreIdentity::setSslCert(const QByteArray& encoded)
 {
     setSslCert(QSslCertificate(encoded));
 }
 
-
 #endif
 
-CoreIdentity &CoreIdentity::operator=(const CoreIdentity &identity)
+CoreIdentity& CoreIdentity::operator=(const CoreIdentity& identity)
 {
     Identity::operator=(identity);
 #ifdef HAVE_SSL
@@ -102,38 +96,33 @@ CoreIdentity &CoreIdentity::operator=(const CoreIdentity &identity)
     return *this;
 }
 
-
 #ifdef HAVE_SSL
 // ========================================
 //  CoreCertManager
 // ========================================
 
-CoreCertManager::CoreCertManager(CoreIdentity &identity)
-    : CertManager(identity.id()),
-    identity(identity)
+CoreCertManager::CoreCertManager(CoreIdentityidentity)
+    : CertManager(identity.id())
+    identity(identity)
 {
     setAllowClientUpdates(true);
 }
 
-
 void CoreCertManager::setId(IdentityId id)
 {
     renameObject(QString::number(id.toInt()));
 }
 
-
-void CoreCertManager::setSslKey(const QByteArray &encoded)
+void CoreCertManager::setSslKey(const QByteArray& encoded)
 {
     identity.setSslKey(encoded);
     CertManager::setSslKey(encoded);
 }
 
-
-void CoreCertManager::setSslCert(const QByteArray &encoded)
+void CoreCertManager::setSslCert(const QByteArray& encoded)
 {
     identity.setSslCert(encoded);
     CertManager::setSslCert(encoded);
 }
 
-
-#endif //HAVE_SSL
+#endif  // HAVE_SSL