[qt] Removed thread checker that fails when searching in Download dialog #6536

Open
biodranik wants to merge 1 commit from ab-thread-checker-qt-download-dialog-fix into master
2 changed files with 0 additions and 6 deletions

View file

@ -279,8 +279,6 @@ namespace qt
void UpdateDialog::FillTree(optional<Filter> const & filter, uint64_t timestamp)
{
CHECK_THREAD_CHECKER(m_threadChecker, ());
if (m_fillTreeTimestamp != timestamp)
return;

View file

@ -4,8 +4,6 @@
#include "platform/downloader_defines.hpp"
#include "base/thread_checker.hpp"
#include <cstdint>
#include <optional>
#include <string>
@ -82,7 +80,5 @@ namespace qt
uint64_t m_fillTreeTimestamp = 0;
std::unordered_multimap<storage::CountryId, QTreeWidgetItem *> m_treeItemByCountryId;
DECLARE_THREAD_CHECKER(m_threadChecker);
};
} // namespace qt