Fix signal not connecting due to API change

The API of registeredNameFound was changed in the LRC resulting
in a signal not beeing connected in the account wizard.
The slot receiving the signal is updating the registered name search
status.

Change-Id: Ide79a4d070aa6f0ab34054208c39a42527831ed9
Reviewed-by: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com>
diff --git a/wizarddialog.h b/wizarddialog.h
index b6faa45..917685d 100644
--- a/wizarddialog.h
+++ b/wizarddialog.h
@@ -62,7 +62,7 @@
 private slots:
     void endSetup(Account::RegistrationState state);
     void on_usernameEdit_textChanged(const QString& arg1);
-    void handle_registeredNameFound(const Account *account, NameDirectory::LookupStatus status, const QString& address, const QString& name);
+    void handle_registeredNameFound(Account *account, NameDirectory::LookupStatus status, const QString& address, const QString& name);
     void handle_nameRegistrationEnded(NameDirectory::RegisterNameStatus status, const QString& name);
     void timeoutNameLookupTimer();