From kde-commits Thu Jan 15 20:30:53 2009 From: George Goldberg Date: Thu, 15 Jan 2009 20:30:53 +0000 To: kde-commits Subject: playground/base/plasma/dataengines/presence Message-Id: <1232051453.601397.19135.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=123205146109433 SVN commit 911654 by gberg: Correct signatures of signals/slots in connect statements. M +6 -6 presence.cpp --- trunk/playground/base/plasma/dataengines/presence/presence.cpp #911653:911654 @@ -166,12 +166,12 @@ * that if another is created while we are * processing them, we don't miss out on it. */ - connect(d->m_accountManager, SIGNAL(accountCreated(const QDBusObjectPath &)), - this, SLOT(accountCreated(const QDBusObjectPath &))); - connect(d->m_accountManager, SIGNAL(accountValidityChanged(const QDBusObjectPath &, bool)), - this, SLOT(accountValidityChanged(const QDBusObjectPath &, bool))); - connect(d->m_accountManager, SIGNAL(accountRemoved(const QDBusObjectPath &)), - this, SLOT(accountRemoved(const QDBusObjectPath &))); + connect(d->m_accountManager, SIGNAL(accountCreated(const QString &)), + this, SLOT(accountCreated(const QString &))); + connect(d->m_accountManager, SIGNAL(accountValidityChanged(const QString &, bool)), + this, SLOT(accountValidityChanged(const QString &, bool))); + connect(d->m_accountManager, SIGNAL(accountRemoved(const QString &)), + this, SLOT(accountRemoved(const QString &))); } /**