diff --git a/src/kcheckableproxymodel.cpp b/src/kcheckableproxymodel.cpp index a882283..5136880 100644 --- a/src/kcheckableproxymodel.cpp +++ b/src/kcheckableproxymodel.cpp @@ -119,10 +119,10 @@ void KCheckableProxyModelPrivate::selectionChanged(const QItemSelection &selecte { Q_Q(KCheckableProxyModel); Q_FOREACH (const QItemSelectionRange &range, q->mapSelectionFromSource(selected)) { - q->dataChanged(range.topLeft(), range.bottomRight()); + emit q->dataChanged(range.topLeft(), range.bottomRight()); } Q_FOREACH (const QItemSelectionRange &range, q->mapSelectionFromSource(deselected)) { - q->dataChanged(range.topLeft(), range.bottomRight()); + emit q->dataChanged(range.topLeft(), range.bottomRight()); } } diff --git a/src/kdescendantsproxymodel.cpp b/src/kdescendantsproxymodel.cpp index d753b7d..7896240 100644 --- a/src/kdescendantsproxymodel.cpp +++ b/src/kdescendantsproxymodel.cpp @@ -901,7 +901,7 @@ void KDescendantsProxyModelPrivate::sourceLayoutAboutToBeChanged() return; } - q->layoutAboutToBeChanged(); + emit q->layoutAboutToBeChanged(); QPersistentModelIndex srcPersistentIndex; Q_FOREACH (const QPersistentModelIndex &proxyPersistentIndex, q->persistentIndexList()) { @@ -937,7 +937,7 @@ void KDescendantsProxyModelPrivate::sourceLayoutChanged() m_layoutChangePersistentIndexes.clear(); m_proxyIndexes.clear(); - q->layoutChanged(); + emit q->layoutChanged(); } void KDescendantsProxyModelPrivate::sourceDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)