From 8152bc0fe0cc2b3b42adc7ff702507e14ee8d302 Mon Sep 17 00:00:00 2001 From: Heiko Becker Date: Wed, 26 Feb 2020 22:34:40 +0100 Subject: [PATCH] Add missing emit --- src/tealistmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tealistmodel.cpp b/src/tealistmodel.cpp index c3b43ea..76318c6 100644 --- a/src/tealistmodel.cpp +++ b/src/tealistmodel.cpp @@ -96,7 +96,7 @@ bool TeaListModel::setData(const QModelIndex &index, const QVariant &value, int } else if( index.column() == 1 ) { m_tealist[ index.row() ].setTime( value.toUInt() ); } - dataChanged( index, index ); + emit dataChanged( index, index ); return true; } -- GitLab