Some notes removed.

This commit is contained in:
Martin Rotter 2015-07-18 13:16:32 +02:00
parent f02bef6cf2
commit bd5fd3455d

View File

@ -338,7 +338,6 @@ void FeedsView::receiveMessageCountsChange(FeedsSelection::SelectionMode mode,
updateCountsOfSelectedFeeds(total_msg_count_changed); updateCountsOfSelectedFeeds(total_msg_count_changed);
} }
// TODO: učechrat
invalidateReadFeedsFilter(); invalidateReadFeedsFilter();
} }
@ -521,9 +520,7 @@ void FeedsView::updateCountsOfParticularFeed(FeedsModelFeed *feed, bool update_t
m_sourceModel->reloadChangedLayout(QModelIndexList() << index); m_sourceModel->reloadChangedLayout(QModelIndexList() << index);
} }
// TODO: učechrat
invalidateReadFeedsFilter(); invalidateReadFeedsFilter();
notifyWithCounts(); notifyWithCounts();
} }
@ -623,12 +620,10 @@ void FeedsView::setupAppearance() {
} }
void FeedsView::selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) { void FeedsView::selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) {
// TODO: učechrat
FeedsModelRootItem *selected_item = selectedItem(); FeedsModelRootItem *selected_item = selectedItem();
m_proxyModel->setSelectedItem(selected_item); m_proxyModel->setSelectedItem(selected_item);
QTreeView::selectionChanged(selected, deselected); QTreeView::selectionChanged(selected, deselected);
emit feedsSelected(FeedsSelection(selected_item)); emit feedsSelected(FeedsSelection(selected_item));
invalidateReadFeedsFilter(); invalidateReadFeedsFilter();
} }