From 283cea6f7a0a358197d6b6b0bbd049a557e8094b Mon Sep 17 00:00:00 2001 From: Aaron Seigo Date: Tue, 24 May 2011 12:19:28 +0200 Subject: [PATCH] fix signature --- remote/signing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote/signing.cpp b/remote/signing.cpp index 96d9f939b..db52d39da 100644 --- a/remote/signing.cpp +++ b/remote/signing.cpp @@ -82,7 +82,7 @@ SigningPrivate::SigningPrivate(Signing *auth, const QString &path) m_keystoreDir->startScan(true); // Start watching the keystore and the dir with the kde keys, and notify for changed - q->connect(m_keystoreDir, SIGNAL(created(const QString &)), q, SLOT(processKeystore())); + q->connect(m_keystoreDir, SIGNAL(created(const QString &)), q, SLOT(processKeystore(const QString &))); q->connect(m_keystoreDir, SIGNAL(dirty(const QString &)), q, SLOT(keyAdded(const QString &))); q->connect(m_keystoreDir, SIGNAL(deleted(const QString &)), q, SLOT(keyRemoved(const QString &))); }