Skip to content

Commit

Permalink
fix mising emit keyword in two places when emitting a signal
Browse files Browse the repository at this point in the history
Signed-off-by: Matthieu Gallien <[email protected]>
  • Loading branch information
mgallien committed Oct 11, 2023
1 parent 2c9096a commit 092cb4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libsync/networkjobs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ bool AvatarJob::finished()
}
}
}
emit(avatarPixmap(avImage));
emit avatarPixmap(avImage);
return true;
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/libsync/syncengine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@ void SyncEngine::slotDiscoveryFinished()

void SyncEngine::slotCleanPollsJobAborted(const QString &error, const ErrorCategory errorCategory)
{
syncError(error, errorCategory);
emit syncError(error, errorCategory);
finalize(false);
}

Expand Down

0 comments on commit 092cb4b

Please sign in to comment.