From c53bab8965a2d5332df55a442a999714b5f700dc Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Fri, 30 Oct 2020 22:10:31 +0100 Subject: filter: internalize shown_dives in DiveFilter class one piece of global state removed! Signed-off-by: Berthold Stoeger --- commands/command_divelist.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'commands') diff --git a/commands/command_divelist.cpp b/commands/command_divelist.cpp index 36d4cdcf3..baf81c1ac 100644 --- a/commands/command_divelist.cpp +++ b/commands/command_divelist.cpp @@ -130,7 +130,7 @@ DivesAndTripsToAdd DiveListBase::removeDives(DivesAndSitesToRemove &divesAndSite sitesToAdd.reserve(divesAndSitesToDelete.sites.size()); // Remember old number of shown dives - int oldShown = shown_dives; + int oldShown = DiveFilter::instance()->shownDives(); // Make sure that the dive list is sorted. The added dives will be sent in a signal // and the recipients assume that the dives are sorted the same way as they are @@ -164,7 +164,7 @@ DivesAndTripsToAdd DiveListBase::removeDives(DivesAndSitesToRemove &divesAndSite emit diveListNotifier.divesDeleted(trip, deleteTrip, divesInTrip); }); - if (oldShown != shown_dives) + if (oldShown != DiveFilter::instance()->shownDives()) emit diveListNotifier.numShownChanged(); return { std::move(divesToAdd), std::move(tripsToAdd), std::move(sitesToAdd) }; -- cgit v1.2.3-70-g09d2