summaryrefslogtreecommitdiff
path: root/examples/triage/exports.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/triage/exports.h')
-rw-r--r--examples/triage/exports.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/triage/exports.h b/examples/triage/exports.h
index aeca67e0..af0f4613 100644
--- a/examples/triage/exports.h
+++ b/examples/triage/exports.h
@@ -22,6 +22,8 @@ class GenericExportsModel : public QAbstractItemModel, public BinaryNinja::Binar
std::atomic<bool> m_updatesPaused = false;
// Read/written from arbitrary threads while processing notifications.
std::atomic<bool> m_needsUpdate = true;
+ // Tracks if notifications arrived while paused
+ std::atomic<bool> m_dirtyWhilePaused = false;
void performSort(int col, Qt::SortOrder order);
void updateModel();