X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientidentity.cpp;h=dc6ebe5997307b87e4ea949dd6a5b747bd4a343f;hp=16e1c424676cb69fbf47e4bd9f3e57b3a842d566;hb=158443f71d48215eea8b47b836b61afd77654b78;hpb=3a3e844f9fcfd12235a0086af75ecd503b621ef4 diff --git a/src/client/clientidentity.cpp b/src/client/clientidentity.cpp index 16e1c424..dc6ebe59 100644 --- a/src/client/clientidentity.cpp +++ b/src/client/clientidentity.cpp @@ -25,20 +25,12 @@ CertIdentity::CertIdentity(IdentityId id, QObject *parent) : Identity(id, parent) -#ifdef HAVE_SSL - , _certManager(nullptr), - _isDirty(false) -#endif { } CertIdentity::CertIdentity(const Identity &other, QObject *parent) : Identity(other, parent) -#ifdef HAVE_SSL - , _certManager(nullptr), - _isDirty(false) -#endif { } @@ -46,10 +38,9 @@ CertIdentity::CertIdentity(const Identity &other, QObject *parent) CertIdentity::CertIdentity(const CertIdentity &other, QObject *parent) : Identity(other, parent) #ifdef HAVE_SSL - , _certManager(nullptr), - _isDirty(other._isDirty), - _sslKey(other._sslKey), - _sslCert(other._sslCert) + , _isDirty(other._isDirty) + , _sslKey(other._sslKey) + , _sslCert(other._sslCert) #endif { }