mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Fix bad signal emissions
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
1dfb9b26f2
commit
377b4f6ddf
1 changed files with 2 additions and 2 deletions
|
@ -52,12 +52,12 @@ bool DummyCredentials::stillValid(QNetworkReply *reply)
|
|||
void DummyCredentials::fetchFromKeychain()
|
||||
{
|
||||
_wasFetched = true;
|
||||
Q_EMIT(fetched());
|
||||
emit fetched();
|
||||
}
|
||||
|
||||
void DummyCredentials::askFromUser()
|
||||
{
|
||||
Q_EMIT(asked());
|
||||
emit asked();
|
||||
}
|
||||
|
||||
void DummyCredentials::persist()
|
||||
|
|
Loading…
Reference in a new issue