X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fclient%2Fclientidentity.cpp;h=af3541cfcb040e70bf712362918bc013882ca722;hb=7156691fecfbc44a67d0ec6055d2e892a7eb42de;hp=c8e8df9581c6fcedb9379de224ea9d7c4aa9f7fc;hpb=1adc00219ba072da57994764d086beed8ffb7bb4;p=quassel.git diff --git a/src/client/clientidentity.cpp b/src/client/clientidentity.cpp index c8e8df95..af3541cf 100644 --- a/src/client/clientidentity.cpp +++ b/src/client/clientidentity.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -23,6 +23,7 @@ #include "client.h" #include "signalproxy.h" +INIT_SYNCABLE_OBJECT(CertIdentity) CertIdentity::CertIdentity(IdentityId id, QObject *parent) : Identity(id, parent) #ifdef HAVE_SSL @@ -60,7 +61,7 @@ void CertIdentity::enableEditSsl(bool enable) { _certManager = new ClientCertManager(id(), this); if(isValid()) { // this means we are not a newly created Identity but have a proper Id Client::signalProxy()->synchronize(_certManager); - connect(_certManager, SIGNAL(updated(const QVariantMap &)), this, SLOT(markClean())); + connect(_certManager, SIGNAL(updated()), this, SLOT(markClean())); connect(_certManager, SIGNAL(initDone()), this, SLOT(markClean())); } }