From 7403cea507c2a70f0ff303aca4be35e04be2a79b Mon Sep 17 00:00:00 2001 From: ratijas Date: Wed, 7 Feb 2024 22:36:19 +0300 Subject: [PATCH] qt: pool: Add missing Q_EMIT keyword (#582) Not that Q_EMIT macro functionally does anything at all, but it is conventional to put it in front of signals. --- qt/pool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/pool.cpp b/qt/pool.cpp index 5493e3010..897334e98 100644 --- a/qt/pool.cpp +++ b/qt/pool.cpp @@ -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)