fix: Ranges found by find view not being highlighted

This commit is contained in:
WerWolv 2023-05-22 00:00:50 +02:00
parent f57d4f2f7a
commit df75218ecb
3 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 433d2303310b53bbe805eb2dc4c6c92bf230d791
Subproject commit 49489507989d767d131342cf3e2c192288cecf14

View File

@ -44,7 +44,7 @@ namespace hex::plugin::builtin {
protected:
bool m_dataValid = false;
size_t m_dataSize = 0x00;
wolv::container::IntervalTree<std::vector<u8>, u64, 0> m_data;
wolv::container::IntervalTree<std::vector<u8>, u64> m_data;
std::fs::path m_sourceFilePath;
};

View File

@ -95,7 +95,7 @@ namespace hex::plugin::builtin {
} m_searchSettings, m_decodeSettings;
using OccurrenceTree = wolv::container::IntervalTree<Occurrence, u64, 0>;
using OccurrenceTree = wolv::container::IntervalTree<Occurrence, u64>;
PerProvider<std::vector<Occurrence>> m_foundOccurrences, m_sortedOccurrences;
PerProvider<OccurrenceTree> m_occurrenceTree;