Skip to content

Commit

Permalink
qt: pool: Add missing Q_EMIT keyword (#582)
Browse files Browse the repository at this point in the history
Not that Q_EMIT macro functionally does anything at all, but it is
conventional to put it in front of signals.
  • Loading branch information
ratijas authored Feb 7, 2024
1 parent edb25f1 commit 7403cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qt/pool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static inline ComponentBox absorbResultToCBox(AsComponentBox *cbox)

static void pool_changed_cb(AsPool *cpool, AppStream::Pool *qpool)
{
qpool->changed();
Q_EMIT qpool->changed();
}

static void pool_ready_async_cb(AsPool *cpool, GAsyncResult *result, gpointer user_data)
Expand Down

0 comments on commit 7403cea

Please sign in to comment.