From 017b22bcc7cf41c2edb0a92008ee87fa805a721b Mon Sep 17 00:00:00 2001 From: Christophe Deschamps Date: Thu, 21 Nov 2024 16:38:18 +0100 Subject: [PATCH] Fix call log not updating --- Linphone/core/proxy/ListProxy.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linphone/core/proxy/ListProxy.hpp b/Linphone/core/proxy/ListProxy.hpp index cab750170..5ef11eb20 100644 --- a/Linphone/core/proxy/ListProxy.hpp +++ b/Linphone/core/proxy/ListProxy.hpp @@ -135,7 +135,7 @@ public: } mList[index] = replacementItem; QModelIndex modelIndex = createIndex(index, 0); - emit dataChanged(modelIndex, modelIndex, {Qt::DisplayRole}); + emit dataChanged(modelIndex, modelIndex); } };