Skip to content

Commit 30db3f3

Browse files
committed
Fix bad signal emissions
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
1 parent a8e6909 commit 30db3f3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/libsync/creds/dummycredentials.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ bool DummyCredentials::stillValid(QNetworkReply *reply)
5252
void DummyCredentials::fetchFromKeychain()
5353
{
5454
_wasFetched = true;
55-
Q_EMIT(fetched());
55+
emit fetched();
5656
}
5757

5858
void DummyCredentials::askFromUser()
5959
{
60-
Q_EMIT(asked());
60+
emit asked();
6161
}
6262

6363
void DummyCredentials::persist()

0 commit comments

Comments
 (0)