From 768bf0dd364239786b9594f60ced85b331ebda5f Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Mon, 13 Jan 2025 11:26:18 -0500 Subject: Move all FeatureMap processing to the background. --- ui/notificationsdispatcher.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/notificationsdispatcher.h') diff --git a/ui/notificationsdispatcher.h b/ui/notificationsdispatcher.h index f3b3a7bd..05073525 100644 --- a/ui/notificationsdispatcher.h +++ b/ui/notificationsdispatcher.h @@ -165,8 +165,8 @@ public: void addSource(NotificationType source) { m_source = static_cast(static_cast(m_source) | static_cast(source)); } NotificationType getSource() const { return m_source; } NotificationTypes getSources() const { return static_cast(m_source); } - bool isObjectRemoval() const { return (m_source & (NotificationType::DataVariableRemoved | NotificationType::FunctionRemoved)); } - bool isRemoval() const { return (m_source & (NotificationType::DataVariableRemoved | NotificationType::FunctionRemoved | NotificationType::SymbolRemoved)); } + bool isObjectRemoval() const { return (m_source & (NotificationType::DataVariableRemoved | NotificationType::FunctionRemoved | NotificationType::StringRemoved)); } + bool isRemoval() const { return (m_source & (NotificationType::DataVariableRemoved | NotificationType::FunctionRemoved | NotificationType::SymbolRemoved | NotificationType::StringRemoved)); } }; -- cgit v1.3.1